-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
62 lines (62 loc) · 2.51 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
{
"name": "paradox-anticheat",
"version": "5.2.1",
"productName": "Paradox-AntiCheat",
"description": "A utility to fight against malicious hackers on Bedrock Edition",
"private": true,
"type": "module",
"devDependencies": {
"@types/node": "22.10.1",
"@types/glob": "8.1.0",
"@types/fs-extra": "11.0.4",
"finalhandler": "1.3.1",
"prettier": "3.4.1",
"serve-static": "1.16.2",
"typescript": "5.7.2",
"fs-extra": "11.2.0",
"glob": "11.0.0",
"adm-zip": "0.5.16",
"chalk": "5.3.0",
"tsc-alias": "1.8.10",
"esbuild": "0.24.0",
"7zip-bin": "5.2.0"
},
"dependencies": {
"@minecraft/server-ui": "1.4.0-beta.1.21.50-stable",
"@minecraft/server": "1.17.0-beta.1.21.50-stable",
"@minecraft/server-net": "1.0.0-beta.1.21.51-stable",
"@minecraft/math": "1.5.1",
"crypto-es": "2.1.0"
},
"overrides": {
"@minecraft/math": {
"@minecraft/server": "1.17.0-beta.1.21.50-stable"
},
"@minecraft/server-ui": {
"@minecraft/server": "1.17.0-beta.1.21.50-stable"
}
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"useTabs": false,
"semi": true,
"printWidth": 250
},
"scripts": {
"postinstall": "npm run copy-modules",
"copy-modules": "node bin/copy-modules.js",
"enableMcLoopback": "CheckNetIsolation.exe LoopbackExempt -a -p=S-1-15-2-1958404141-86561845-1752920682-3514627264-368642714-62675701-733520436",
"enableMcPreviewLoopback": "CheckNetIsolation.exe LoopbackExempt -a -p=S-1-15-2-424268864-5579737-879501358-346833251-474568803-887069379-4040235476",
"format": "npx prettier --write --ignore-path .prettierignore ./",
"git-tree": "node bin/git-tree.js",
"test": "node bin/test-build.js",
"personal-test": "node bin/test-build.js --personal",
"check-naming": "node bin/tree-format.js",
"build": "npm run check-naming & node bin/build-package.js",
"dist": "npm run check-naming & node bin/build-package.js --mcpack",
"pete9xi-build": "npm run check-naming & node bin/build-package.js & node bin/pete9xi-build-package.js",
"personal-build": "npm run check-naming & node bin/build-package.js & node bin/personal-build-package.js",
"personal-dist": "npm run check-naming & node bin/build-package.js --mcpack & node bin/personal-build-package.js --mcpack"
}
}