-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathpackage.json
53 lines (53 loc) · 1.29 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
{
"name": "distube-example",
"version": "1.0.0",
"description": "DisTube example music bot.",
"scripts": {
"start": "ts-node src/index.ts",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"p": "prettier . --write"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/distubejs/example.git"
},
"author": "Skick",
"license": "MIT",
"bugs": {
"url": "https://github.com/distubejs/example/issues"
},
"homepage": "https://github.com/distubejs/example#readme",
"dependencies": {
"@discordjs/opus": "^0.9.0",
"@discordjs/voice": "^0.17.0",
"@distube/deezer": "^2.0.0",
"@distube/direct-link": "^1.0.0",
"@distube/file": "^1.0.0",
"@distube/soundcloud": "^2.0.0",
"@distube/spotify": "^2.0.0",
"@distube/youtube": "^1.0.0",
"discord.js": "^14.15.3",
"distube": "^5.0.1",
"sodium-native": "^4.1.1"
},
"devDependencies": {
"@types/node": "^20.14.1",
"discord.js": "^14.15.2",
"eslint": "^8.57.0",
"eslint-config-distube": "^1.7.0",
"prettier": "^3.3.0",
"ts-node": "^10.9.2",
"tsup": "^8.1.0",
"typescript": "^5.4.5"
},
"nano-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
],
"*.{json,yml,yaml,md}": [
"prettier --write"
]
}
}