@sfmc-bds/cli 0.2.0-beta.1 → 0.2.0-beta.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +14 -14
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sfmc-bds/cli",
|
|
3
|
-
"version": "0.2.0-beta.
|
|
3
|
+
"version": "0.2.0-beta.5",
|
|
4
4
|
"description": "SFMC management CLI — REPL, service supervisor, module install, behavior-pack build/deploy",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"license": "ISC",
|
|
7
5
|
"author": "Shiroha7z",
|
|
6
|
+
"license": "ISC",
|
|
7
|
+
"type": "module",
|
|
8
8
|
"homepage": "https://github.com/DogeLakeDev/ScriptsForMinecraftServer/tree/main/sfmc#readme",
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
@@ -15,11 +15,14 @@
|
|
|
15
15
|
"url": "https://github.com/DogeLakeDev/ScriptsForMinecraftServer/issues"
|
|
16
16
|
},
|
|
17
17
|
"keywords": [
|
|
18
|
-
"minecraft-bedrock",
|
|
19
|
-
"sfmc",
|
|
20
18
|
"cli",
|
|
21
|
-
"
|
|
19
|
+
"minecraft-bedrock",
|
|
20
|
+
"scriptsforminecraftserver",
|
|
21
|
+
"sfmc"
|
|
22
22
|
],
|
|
23
|
+
"engines": {
|
|
24
|
+
"node": ">=22.13.0"
|
|
25
|
+
},
|
|
23
26
|
"main": "dist/index.js",
|
|
24
27
|
"types": "dist/index.d.ts",
|
|
25
28
|
"exports": {
|
|
@@ -42,22 +45,19 @@
|
|
|
42
45
|
"README.md"
|
|
43
46
|
],
|
|
44
47
|
"scripts": {
|
|
48
|
+
"build": "sfmc-esbuild-transpile --dts",
|
|
49
|
+
"prepublishOnly": "npm run build",
|
|
45
50
|
"start": "node ./dist/main.js",
|
|
46
|
-
"build": "node ../scripts/esbuild-transpile.mjs --dts",
|
|
47
|
-
"typecheck": "tsc7 --noEmit -p tsconfig.json",
|
|
48
51
|
"test": "npm run build && node --test pack-update-policy.test.mjs pack-update-config.test.mjs terminal-progress.test.mjs wrap-log-line.test.mjs world-packs-uninstall.test.mjs log-filter.test.mjs",
|
|
49
|
-
"
|
|
52
|
+
"typecheck": "tsc7 --noEmit -p tsconfig.json"
|
|
50
53
|
},
|
|
51
54
|
"dependencies": {
|
|
52
|
-
"@sfmc-bds/bds-tools": "^0.2.0-beta.0",
|
|
53
|
-
"@sfmc-bds/sdk": "^0.2.0-beta.1",
|
|
54
55
|
"@clack/prompts": "^1.7.0",
|
|
56
|
+
"@sfmc-bds/bds-tools": "^0.2.0-beta.7",
|
|
57
|
+
"@sfmc-bds/sdk": "^0.2.0-beta.6",
|
|
55
58
|
"chalk": "^5.4.1",
|
|
56
59
|
"ws": "^8.21.1"
|
|
57
60
|
},
|
|
58
|
-
"engines": {
|
|
59
|
-
"node": ">=22.13.0"
|
|
60
|
-
},
|
|
61
61
|
"publishConfig": {
|
|
62
62
|
"access": "public",
|
|
63
63
|
"registry": "https://registry.npmjs.org/"
|