generated from kirishima-ship/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.61 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@kirishima/core",
"author": {
"name": "KagChi"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"description": "Kirishima is extendable, fast, flexible, asynchronous lavalink client",
"version": "0.7.0",
"license": "GPL-3.0",
"repository": {
"url": "https://github.com/kirishima-ship/core"
},
"keywords": [
"lavalink",
"kirishima",
"lavalink-client",
"extendable-lavalink-client"
],
"bugs": {
"url": "https://github.com/kirishima-ship/core/issues"
},
"readme": "https://github.com/kirishima-ship/core/blob/main/README.md",
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"scripts": {
"build": "rimraf dist && unbuild && tsc",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write {src,tests}/**/*.ts"
},
"devDependencies": {
"@babel/types": "7.17.0",
"@sapphire/eslint-config": "4.3.0",
"@sapphire/prettier-config": "1.4.0",
"@sapphire/ts-config": "3.3.2",
"@types/node": "17.0.21",
"@types/ws": "8.5.3",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"eslint": "8.11.0",
"prettier": "2.5.1",
"rimraf": "3.0.2",
"typescript": "4.6.2",
"unbuild": "0.7.0"
},
"prettier": "@sapphire/prettier-config",
"dependencies": {
"@discordjs/collection": "^0.5.0",
"@kirishima/fetch": "^0.2.1",
"@kirishima/rest": "^0.1.3",
"@kirishima/ws": "^0.2.2",
"@sapphire/async-queue": "^1.3.0",
"@sapphire/utilities": "^3.5.0",
"discord-api-types": "^0.29.0",
"lavalink-api-types": "^0.1.9",
"undici": "^4.16.0",
"ws": "^8.5.0"
}
}