@zivis/cli 0.1.0-alpha.22 → 0.1.0-alpha.23

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 (1) hide show
  1. package/package.json +12 -12
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zivis/cli",
3
- "version": "0.1.0-alpha.22",
3
+ "version": "0.1.0-alpha.23",
4
4
  "description": "ZIVIS CLI — threat modeling, scans, and MCP server for IDE integration",
5
5
  "type": "module",
6
6
  "bin": {
@@ -13,29 +13,29 @@
13
13
  "publishConfig": {
14
14
  "access": "restricted"
15
15
  },
16
- "scripts": {
17
- "build:workspace-deps": "pnpm --filter @zivis/mcp run build",
18
- "build": "pnpm run build:workspace-deps && tsc && node scripts/ensure-symlink.cjs",
19
- "dev": "tsc --watch",
20
- "start": "node dist/index.js",
21
- "lint": "pnpm run build:workspace-deps && tsc --noEmit",
22
- "test": "vitest run"
23
- },
24
16
  "engines": {
25
17
  "node": ">=20.0.0"
26
18
  },
27
19
  "dependencies": {
28
20
  "@iarna/toml": "^2.2.5",
29
21
  "@vscode/tree-sitter-wasm": "^0.3.1",
30
- "@zivis/mcp": "workspace:*",
31
22
  "commander": "^12.1.0",
32
23
  "ignore": "^7.0.5",
33
24
  "open": "^10.1.0",
34
- "web-tree-sitter": "^0.26.8"
25
+ "web-tree-sitter": "^0.26.8",
26
+ "@zivis/mcp": "0.1.0-alpha.11"
35
27
  },
36
28
  "devDependencies": {
37
29
  "@types/node": "^22.0.0",
38
30
  "typescript": "^5.7.0",
39
31
  "vitest": "^3.0.0"
32
+ },
33
+ "scripts": {
34
+ "build:workspace-deps": "pnpm --filter @zivis/mcp run build",
35
+ "build": "pnpm run build:workspace-deps && tsc && node scripts/ensure-symlink.cjs",
36
+ "dev": "tsc --watch",
37
+ "start": "node dist/index.js",
38
+ "lint": "pnpm run build:workspace-deps && tsc --noEmit",
39
+ "test": "vitest run"
40
40
  }
41
- }
41
+ }