-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.23 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
{
"name": "sfmc-monorepo",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=22.13.0"
},
"bin": {
"sfmc": "sfmc/dist/main.js"
},
"scripts": {
"build": "npm run build --workspaces --if-present",
"build:publishable": "node tools/build-publishable.mjs",
"catalog-sync": "node tools/catalog-sync.mjs",
"changeset": "changeset",
"check-modules": "node tools/check-modules.mjs",
"check-ootb": "node tools/check-ootb.mjs",
"ci-release-packages": "node tools/run-release.mjs --ci",
"docs": "node tools/docs.mjs",
"lint": "npm run build --workspace @sfmc-bds/eslint-plugin && eslint .",
"pack:verify": "node tools/pack-verify.mjs",
"prerelease-packages": "node tools/run-release.mjs --pre",
"release-packages": "node tools/run-release.mjs --stable",
"smoke-modules": "node tools/smoke-modules.mjs",
"start": "node sfmc/dist/main.js",
"syncpack:fix": "node tools/syncpack-fix.mjs",
"syncpack:lint": "syncpack lint",
"typecheck": "npm run typecheck --workspaces --if-present",
"version-packages": "changeset version"
},
"devDependencies": {
"@changesets/cli": "^2.31.1",
"@minecraft/diagnostics": "1.0.0-beta.1.26.40-preview.30",
"@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/node": "^26.1.1",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.64.0",
"@typescript-eslint/parser": "^8.64.0",
"@typescript/native": "npm:typescript@^7.0.2",
"esbuild": "^0.28.1",
"eslint": "^10.7.0",
"prettier": "^3.9.5",
"prettier-plugin-organize-imports": "^4.3.0",
"syncpack": "^15.3.2",
"tsx": "^4.19.0",
"typedoc": "^0.28.20",
"typedoc-plugin-markdown": "^4.12.0",
"typescript": "npm:@typescript/typescript6@^6.0.2"
},
"workspaces": [
"modules/sdk/@sfmc-sdk",
"modules/sdk/@sfmc-eslint-plugin",
"modules/packages/*",
"db-server",
"qq-bridge",
"bds-tools",
"sfmc",
"sfmc-meta",
"remote-controller",
"tools"
],
"allowScripts": {
"esbuild@0.28.1": true
}
}