forked from PrismarineJS/flying-squid
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.47 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@zardoy/flying-squid",
"description": "A minecraft server written in TS",
"version": "0.0.0-dev",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"bin": "dist/app.js",
"release": {
"sharedActionsOverride": {
"updateHomepage": false,
"runBuild": false
}
},
"scripts": {
"start": "tsc && node dist/app.js",
"build": "tsc && node scripts/genTypes.mjs",
"dev": "tsx watch src/app.js",
"watch": "concurrently \"tsc -w\" \"nodemon --watch dist/index.js scripts/genTypes.mjs\"",
"make-exe": "pkg dist/app.js --targets node18-win-x64",
"build-npm": "tsc -p tsconfig.npm.json && node scripts/genTypes.mjs",
"prepare": "pnpm build",
"lint": "eslint src/**",
"fix": "eslint src/** --fix",
"mocha_test": "mocha --reporter spec --timeout 3000 --exit",
"vitest": "vitest",
"test-latest": "echo todo",
"test-essential": "echo todo",
"test-all": "echo todo",
"test": "echo TODO",
"pretest": "echo TODO-soon"
},
"keywords": [
"browser",
"minecraft server",
"java minecraft server"
],
"license": "MIT",
"engines": {
"node": ">=8"
},
"dependencies": {
"@tootallnate/once": "2.0.0",
"change-case": "^4.1.2",
"chalk": "^5.3.0",
"diamond-square": "github:zardoy/diamond-square",
"emit-then": "^2.0.0",
"exit-hook": "^2.2.1",
"flatmap": "^0.0.3",
"long": "^5.1.0",
"minecraft-data": "3.67.0",
"minecraft-protocol": "^1.44.0",
"mkdirp": "^2.1.3",
"node-gzip": "^1.1.2",
"node-rsa": "^1.1.1",
"prismarine-chunk": "^1.35.0",
"prismarine-entity": "^2.3.1",
"prismarine-item": "^1.14.0",
"prismarine-nbt": "^2.2.1",
"prismarine-provider-anvil": "github:zardoy/prismarine-provider-anvil#everything",
"prismarine-windows": "^2.8.0",
"prismarine-world": "^3.6.2",
"rambda": "^9.2.0",
"random-seed": "^0.3.0",
"range": "^0.0.3",
"readline": "^1.3.0",
"sanitize-filename": "^1.6.3",
"typed-emitter": "1.4.0",
"uuid-1345": "^1.0.1",
"vec3": "^0.1.8",
"yaml": "^2.4.1",
"yargs": "^17.0.1"
},
"devDependencies": {
"concurrently": "^8.2.2",
"expect": "^29.1.2",
"longjohn": "^0.2.12",
"minecraft-wrap": "^1.2.3",
"mineflayer": "^4.0.0",
"mocha": "^10.0.0",
"nodemon": "^3.1.4",
"pkg": "^5.8.1",
"tsx": "^4.10.1",
"typescript": "^5.6.3",
"vitest": "^0.34.6"
},
"pnpm": {
"overrides": {
"protodef": "npm:@zardoy/protodef"
}
}
}