-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.21 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
{
"name": "qixing-music",
"version": "0.1.0",
"description": "A discord music bot based on lavalink",
"main": "dist/index.js",
"engines": {
"node": ">=16.6.0"
},
"scripts": {
"start": "node .",
"lint": "eslint --ext .ts src",
"build": "rimraf dist && tsc",
"test": "npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Azusfin/qixing-music.git"
},
"author": "Azusfin",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Azusfin/qixing-music/issues"
},
"homepage": "https://github.com/Azusfin/qixing-music#readme",
"dependencies": {
"@sapphire/decorators": "^3.1.4",
"@sapphire/framework": "^2.3.0-pr-293.69c030f.0",
"@sapphire/plugin-logger": "^2.1.1",
"discord.js": "^13.5.0",
"humanize-duration": "^3.27.1",
"lavacoffee": "^1.5.2",
"ms-utility": "^3.0.2",
"yaml": "^2.0.0-10"
},
"devDependencies": {
"@hazmi35/eslint-config": "^7.0.1",
"@types/humanize-duration": "^3.27.1",
"@types/node": "^16.11.17",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint": "^8.6.0",
"rimraf": "^3.0.2",
"typescript": "^4.4.4"
}
}