forked from Micchili/onichan-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 942 Bytes
/
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
{
"name": "onichan-bot",
"version": "1.0.0",
"description": "周防桃子が好きです",
"scripts": {
"start": "node ./dist/index.js",
"start:dev": "ts-node ./src/index.ts",
"compile": "tsc -p .",
"compile:test": "tsc -p . --noEmit",
"lint": "eslint --ext .ts --ignore-path .gitignore .",
"lint:fix": "eslint --ext .ts --ignore-path .gitignore . --fix",
"test": "npm run lint && npm run compile:test"
},
"dependencies": {
"@discordjs/opus": "^0.4.0",
"@types/axios": "^0.14.0",
"discord.js": "^12.3.1",
"jest": "^26.6.3",
"node-opus": "^0.3.3",
"opusscript": "^0.0.8"
},
"devDependencies": {
"@types/node": "^14.14.31",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^7.21.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"engines": {
"node": ">=12.x.x"
}
}