-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.43 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": "clippybot",
"version": "0.0.1",
"description": "Create Audio Clips on Discord!",
"bin": {
"clippybot": "./dist/index.js"
},
"scripts": {
"clean": "rimraf dist/",
"copy-files": "copyfiles -u 1 resources/*.* dist/resources",
"build": "npm run clean && tsc && npm run copy-files",
"start": "npm run build && node dist/index.js start",
"deploy": "npm run build && node dist/index.js deploy",
"lint": "eslint . --ext .ts",
"test": "jest"
},
"keywords": [],
"author": "henrymxu",
"license": "Apache-2.0",
"dependencies": {
"@discordjs/opus": "^0.9.0",
"@discordjs/voice": "^0.16.1",
"discord.js": "^14.14.1",
"dotenv": "^16.0.3",
"easy-table": "^1.2.0",
"libsodium-wrappers": "^0.7.10",
"mongodb": "6.3",
"node-lame": "^1.3.1",
"pm2": "^5.3.0",
"require-all": "^3.0.0",
"rimraf": "^4.4.0",
"yargs": "^17.7.1"
},
"peerDependencies": {
"@keyv/mongo": "^2.2.8"
},
"devDependencies": {
"@types/jest": "^29.5.10",
"@types/yargs": "^17.0.22",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"copyfiles": "^2.4.1",
"eslint": "^8.32.0",
"eslint-config-standard-with-typescript": "^31.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.4.1",
"ts-jest": "^29.0.5",
"typescript": "^5.3.0"
}
}