@serviceme/devtools-cli 0.0.6 → 0.1.2
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/dist/bridgeServer.js +538 -500
- package/dist/cli.js +13543 -11772
- package/package.json +6 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@serviceme/devtools-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Unified SERVICEME CLI for automation, project scaffolding, and bridge-based tooling.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"repository": {
|
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
"@types/node": "^24",
|
|
43
43
|
"tsup": "^8.5.1",
|
|
44
44
|
"typescript": "^5.9.3",
|
|
45
|
-
"@serviceme/devtools-core": "0.
|
|
46
|
-
"@serviceme/devtools-protocol": "0.
|
|
45
|
+
"@serviceme/devtools-core": "0.1.2",
|
|
46
|
+
"@serviceme/devtools-protocol": "0.1.2"
|
|
47
47
|
},
|
|
48
48
|
"scripts": {
|
|
49
49
|
"build": "tsup --config tsup.config.ts",
|
|
@@ -53,6 +53,8 @@
|
|
|
53
53
|
"publish:npm": "pnpm publish --access public --no-git-checks",
|
|
54
54
|
"version:update": "node scripts/update-version.js",
|
|
55
55
|
"watch": "tsup --config tsup.config.ts --watch",
|
|
56
|
-
"typecheck": "tsc --noEmit"
|
|
56
|
+
"typecheck": "tsc --noEmit",
|
|
57
|
+
"link:global": "pnpm run build && npm link",
|
|
58
|
+
"unlink:global": "npm unlink -g @serviceme/devtools-cli"
|
|
57
59
|
}
|
|
58
60
|
}
|