-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.48 KB
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
{
"name": "sfmc-monorepo",
"private": true,
"bin": {
"sfmc": "sfmc/dist/main.js"
},
"devDependencies": {
"@minecraft/server": "2.10.0-beta.1.26.40-preview.30",
"@minecraft/server-net": "1.0.0-beta.11940b24",
"@minecraft/server-ui": "2.2.0-beta.1.26.40-preview.30",
"@minecraft/vanilla-data": "1.26.40-preview.30",
"@types/lodash": "^4.17.24",
"@types/node": "^26.1.1",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.64.0",
"@typescript-eslint/parser": "^8.64.0",
"@typescript-eslint/rule-tester": "^8.65.0",
"@typescript-eslint/utils": "^8.65.0",
"@typescript/native": "npm:typescript@^7.0.2",
"esbuild": "^0.28.1",
"eslint": "^10.7.0",
"lodash": "^4.18.1",
"nodemon": "^3.1.14",
"npm-run-all2": "^9.0.2",
"prettier": "^3.9.5",
"prettier-plugin-organize-imports": "^4.3.0",
"properties-reader": "^3.0.1",
"rimraf": "^6.1.3",
"source-map": "^0.7.6",
"typescript": "npm:@typescript/typescript6@^6.0.2"
},
"scripts": {
"start": "node sfmc/dist/main.js",
"build": "npm run build --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"lint": "npm run eslint-plugin:build && eslint .",
"sdk:build": "npm run build --workspace @sfmc-bds/sdk",
"sdk:typecheck": "npm run typecheck --workspace @sfmc-bds/sdk",
"sdk:verify": "npm run sdk:typecheck && npm run sdk:build",
"eslint-plugin:build": "npm run build --workspace @sfmc-bds/eslint-plugin",
"eslint-plugin:test": "npm run test --workspace @sfmc-bds/eslint-plugin",
"pack:verify": "node tools/pack-verify.mjs",
"check-modules": "node tools/check-modules.mjs",
"catalog-sync": "node tools/catalog-sync.mjs",
"check-ootb": "node tools/check-ootb.mjs",
"check-minecraft-versions": "node tools/check-minecraft-versions.mjs",
"smoke-modules": "node tools/smoke-modules.mjs"
},
"workspaces": [
"modules/sdk/@sfmc-sdk",
"modules/sdk/@sfmc-eslint-plugin",
"modules/packages/*",
"db-server",
"qq-bridge",
"bds-tools",
"sfmc",
"sfmc-meta",
"remote-controller",
"tools"
],
"engines": {
"node": ">=22.13.0"
},
"allowScripts": {
"esbuild@0.28.1": true
},
"type": "module",
"overrides": {
"@minecraft/server": "2.10.0-beta.1.26.40-preview.30",
"@minecraft/server-net": "1.0.0-beta.11940b24",
"@minecraft/server-ui": "2.2.0-beta.1.26.40-preview.30",
"@minecraft/vanilla-data": "1.26.40-preview.30"
}
}