-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json.dupe
56 lines (56 loc) · 1.59 KB
/
package.json.dupe
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
{
"name": "stroycord",
"version": "1.0.0",
"description": "A discord bot to play music in VC",
"main": "src/Bot.ts",
"scripts": {
"dev": "tsx watch ./src/Bot.ts",
"start": "node ./dist/Bot.js",
"build": "npm run lint && tsup ./src/Bot.ts --minify",
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts .",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"commit-msg": "npx --no-install commitlint --edit $1"
}
},
"author": "Dest.Com",
"license": "GPL-3.0",
"dependencies": {
"@discordjs/opus": "^0.9.0",
"@discordjs/voice": "^0.16.0",
"discord.js": "^14.13.0",
"dotenv": "^16.3.1",
"i18n-js": "^4.3.0",
"libsodium-wrappers": "^0.7.11",
"mongodb": "^5.8.1",
"mongoose": "^7.6.0",
"play-dl": "github:Yoduh/play-dl-test"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/i18n-js": "^3.8.5",
"@types/node": "^20.5.4",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^38.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.0",
"prettier": "^3.0.2",
"tsup": "^7.2.0",
"tsx": "^3.12.7",
"typescript": "^5.2.2"
},
"overrides": {
"discord-api-types": ">=0.30.0"
}
}