-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.35 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
{
"name": "minebot",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "tsc && node ./dist/index.js",
"typeorm": "typeorm-ts-node-commonjs",
"migration:run": "ts-node ./node_modules/typeorm/cli.js migration:run -d ./src/dataSource.ts",
"schema:sync": "npm run typeorm schema:sync -- -d src/dataSource.ts",
"migration:show": "npm run typeorm migration:show -- -d src/dataSource.ts",
"migration:generate": "npm run typeorm migration:generate -- -d src/dataSource.ts",
"migration:create": "npm run typeorm migration:create"
},
"author": "JungleDome",
"license": "MIT",
"dependencies": {
"better-sqlite3": "^7.6.2",
"body-parser": "^1.20.1",
"express": "^4.18.2",
"luxon": "^3.1.0",
"mineflayer": "^4.5.1",
"mineflayer-auto-auth": "^2.0.0",
"mineflayer-chat-commands": "^1.0.3",
"mineflayer-gui": "^2.1.2",
"mineflayer-pathfinder": "^2.4.0",
"mineflayer-plugin-manager": "^1.0.1",
"prismarine-registry": "^1.5.0",
"promise.timeout": "^1.1.1",
"quick.db": "^9.0.6",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.10",
"vec3": "^0.1.7"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/luxon": "^3.1.0",
"@types/uuid": "^8.3.4",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"uuid": "^9.0.0"
}
}