@serviceme/devtools-cli 2.0.1 → 2.0.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.
Files changed (3) hide show
  1. package/dist/bridgeServer.js +3307 -1974
  2. package/dist/cli.js +6381 -5514
  3. package/package.json +9 -9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serviceme/devtools-cli",
3
- "version": "2.0.1",
3
+ "version": "2.0.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": {
@@ -39,18 +39,18 @@
39
39
  "registry": "https://registry.npmjs.org/"
40
40
  },
41
41
  "dependencies": {
42
- "@serviceme/devtools-core": "2.0.1",
43
- "@serviceme/devtools-protocol": "2.0.1",
44
- "@serviceme/devtools-shared": "2.0.1"
42
+ "@serviceme/devtools-core": "2.0.2",
43
+ "@serviceme/devtools-protocol": "2.0.2",
44
+ "@serviceme/devtools-shared": "2.0.2"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@types/node": "^24",
48
- "tsup": "^8.5.1",
49
- "tsx": "^4.22.0",
50
- "typescript": "^5.9.3"
48
+ "tsdown": "^0.23.0",
49
+ "tsx": "^4.23.13",
50
+ "typescript": "^7.0.2"
51
51
  },
52
52
  "scripts": {
53
- "build": "tsup --config tsup.config.ts",
53
+ "build": "tsdown",
54
54
  "lint": "biome check src test",
55
55
  "format": "biome check --write src test",
56
56
  "release:check": "pnpm run test && npm pack --dry-run",
@@ -58,7 +58,7 @@
58
58
  "pack": "npm pack",
59
59
  "publish:npm": "pnpm publish --access public --no-git-checks",
60
60
  "version:update": "node scripts/update-version.js",
61
- "watch": "tsup --config tsup.config.ts --watch",
61
+ "watch": "tsdown --watch",
62
62
  "typecheck": "tsc --noEmit",
63
63
  "link:global": "pnpm run build && npm link",
64
64
  "unlink:global": "npm unlink -g @serviceme/devtools-cli"