forked from stegripe/rawon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.5 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
{
"name": "disc-11",
"version": "2.3.0",
"private": true,
"description": "A dedicated open-source Discord bot for Zhycorp based from our Discord bot template with more features. Easy to use, and with no coding required.",
"repository": "https://github.com/zhycorp/disc-11",
"license": "BSD-3-Clause",
"author": "Zhycorp <support@zhycorp.net>",
"main": "index.js",
"scripts": {
"build": "npm run lint && npm run compile",
"compile": "npx sucrase src -d dist --transforms typescript,imports",
"tscompile": "tsc --build tsconfig.json",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"start": "node ."
},
"eslintConfig": {
"parserOptions": {
"project": "./tsconfig.json"
},
"extends": "@zhycorp/eslint-config/typescript"
},
"dependencies": {
"@discordjs/voice": "^0.7.5",
"date-fns": "^2.28.0",
"discord.js": "^13.5.0",
"dotenv": "^10.0.0",
"got": "^11.8.3",
"i18n": "0.13.4",
"opusscript": "^0.0.8",
"prism-media": "^1.3.2",
"soundcloud.ts": "^0.4.1",
"sucrase": "^3.20.3",
"tslib": "^2.3.1",
"tweetnacl": "^1.0.3",
"youtube-dl-exec": "^2.0.2",
"youtubei": "^0.0.1-rc.23"
},
"devDependencies": {
"@types/i18n": "^0.13.2",
"@types/node": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"@zhycorp/eslint-config": "^6.0.2",
"eslint": "^8.5.0",
"typescript": "^4.4.9"
},
"engines": {
"node": ">=16.6.0"
}
}