-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.4 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
53
{
"name": "helpstart-v2",
"author": "tahmid-23",
"version": "2.0.0",
"license": "MIT",
"bugs": "https://github.com/tahmid-23/helpstart-v2/issues",
"homepage": "https://github.com/tahmid-23/helpstart-v2/",
"repository": {
"type": "git",
"url": "https://github.com/tahmid-23/helpstart-v2/"
},
"private": true,
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"deploy-commands": "ts-node ./register-commands.ts",
"dev": "nodemon ./src/index.ts",
"test": "jest",
"clean": "npx tsc --build --clean",
"build": "npx tsc",
"prod": "npm run clean && npm run build && node ./dist/src/index.js"
},
"dependencies": {
"@tsconfig/node18": "^1.0.1",
"@types/node": "^18.11.17",
"@types/uuid": "^9.0.0",
"discord.js": "^14.7.1",
"dotenv": "^16.0.3",
"minecraft-protocol": "^1.36.0",
"mineflayer": "^4.5.1",
"sqlite": "^4.1.2",
"sqlite3": "^5.1.4",
"typed-emitter": "^1.0.0",
"uuid": "^9.0.0",
"vec3": "^0.1.7"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-n": "^15.6.0",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"prettier": "^2.8.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
}
}