-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.34 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.34 KB
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
{
"name": "2na2-discord",
"version": "1.0.3.5",
"main": "built/index.js",
"private": true,
"author": "na2na",
"type": "module",
"license": "MIT",
"scripts": {
"start": "node built/index.js --trace-warnings",
"build": "yarn tsc -p tsconfig.json && yarn tsc-alias -p tsconfig.json",
"lint": "yarn eslint --ext .js,.ts .",
"lint:fix": "yarn eslint --ext .js,.ts . --fix",
"test": "mocha 'test/**/*.ts'"
},
"dependencies": {
"@discordjs/opus": "^0.8.0",
"@discordjs/voice": "^0.10.0",
"autobind-decorator": "^2.4.0",
"chalk": "^5.0.1",
"color": "^4.2.3",
"dayjs": "^1.11.3",
"deepl": "^1.0.13",
"discord-api-types": "^0.36.1",
"discord.js": "^13.8.1",
"js-yaml": "^4.1.0",
"libsodium-wrappers": "^0.7.10",
"twemoji-parser": "^14.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/color": "^3.0.3",
"@types/js-yaml": "^4.0.5",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.3",
"@types/twemoji-parser": "^13.1.1",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"chai": "^4.3.6",
"eslint": ">=5.16.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.25.2",
"mocha": "^10.0.0",
"ts-node": "^10.8.2",
"tsc-alias": "^1.6.11",
"typescript": "^4.7.4"
}
}