-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 871 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
35
36
37
38
{
"name": "musica",
"version": "0.0.2",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"clean": "rimraf ./dist",
"start": "ts-node index.ts",
"deploy-commands": "ts-node deploy-commands.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Vadim Karpov @onepix87",
"license": "ISC",
"dependencies": {
"discord.js": "^14.14.1",
"dotenv": "^16.3.1",
"ws": "^8.13.0"
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"semi": true,
"singleQuote": true
},
"devDependencies": {
"@tsconfig/node18": "^1.0.1",
"@types/node": "^18.15.11",
"discord-api-types": "^0.37.51",
"prettier": "3.0.0",
"pretty-quick": "^3.1.3",
"rimraf": "^4.4.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.2",
"undici": "^5.22.1"
}
}