@coopcli/specsketch 5.5.4 → 5.5.7
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/cli/index.js +863 -252
- package/package.json +77 -74
package/package.json
CHANGED
|
@@ -1,76 +1,79 @@
|
|
|
1
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
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
2
|
+
"name": "@coopcli/specsketch",
|
|
3
|
+
"version": "5.5.7",
|
|
4
|
+
"description": "coopcli specsketch — draw an architecture diagram, generate an OpenSpec change proposal into your openspec/ change directory. Local-only.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"specsketch": "dist/cli/index.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist/client",
|
|
11
|
+
"dist/cli"
|
|
12
|
+
],
|
|
13
|
+
"engines": {
|
|
14
|
+
"node": ">=22"
|
|
15
|
+
},
|
|
16
|
+
"homepage": "https://coopcli.com/products/specsketch",
|
|
17
|
+
"scripts": {
|
|
18
|
+
"dev": "concurrently -k -n web,api \"vite\" \"tsx watch server/index.ts\"",
|
|
19
|
+
"server": "tsx watch server/index.ts",
|
|
20
|
+
"web": "vite",
|
|
21
|
+
"check": "tsc --noEmit",
|
|
22
|
+
"test": "vitest run",
|
|
23
|
+
"build": "vite build",
|
|
24
|
+
"build:cli": "vite build && esbuild server/cli-entry.ts --bundle --platform=node --format=esm --packages=external --alias:@coopcli/shared/canvas-protocol=../shared/src/canvas-protocol.ts --alias:@coopcli/shared/cli-config=../shared/src/cli-config.ts --alias:@coopcli/shared/cli-auth=../shared/src/cli-auth.ts --alias:@coopcli/shared/api-client=../shared/src/api-client.ts --alias:@coopcli/shared/openspec-change-meta=../shared/src/openspec-change-meta.ts --alias:@coopcli/agent-harness=../agent-harness/src/index.ts --banner:js='#!/usr/bin/env node' --outfile=dist/cli/index.js",
|
|
25
|
+
"cli": "npm run build:cli && node dist/cli/index.js",
|
|
26
|
+
"prepublishOnly": "npm run check && npm run test && npm run build:cli",
|
|
27
|
+
"smoke": "tsx scripts/smoke.ts",
|
|
28
|
+
"site:dev": "wrangler dev --config site/wrangler.jsonc --inspector-port 9234",
|
|
29
|
+
"site:deploy": "npm run build:viewer && wrangler deploy --config site/wrangler.jsonc",
|
|
30
|
+
"build:cf": "vite build && flue build --target cloudflare && node scripts/patch-assets.mjs",
|
|
31
|
+
"dev:cf": "vite build && flue dev --target cloudflare",
|
|
32
|
+
"deploy:cf": "npm run build:cf && wrangler deploy --config dist/specsketch/wrangler.json",
|
|
33
|
+
"build:viewer": "vite build --base /products/specsketch/app/ --outDir ../../../web/public/products/specsketch/app --emptyOutDir"
|
|
34
|
+
},
|
|
35
|
+
"keywords": [
|
|
36
|
+
"excalidraw",
|
|
37
|
+
"webrtc",
|
|
38
|
+
"cloudflare-workers",
|
|
39
|
+
"flue",
|
|
40
|
+
"openspec",
|
|
41
|
+
"spec-driven-development"
|
|
42
|
+
],
|
|
43
|
+
"author": "",
|
|
44
|
+
"license": "MIT",
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"@cloudflare/workers-types": "^4.20260702.1",
|
|
47
|
+
"@fission-ai/openspec": "^1.5.0",
|
|
48
|
+
"@flue/cli": "^1.0.0-beta.9",
|
|
49
|
+
"@flue/runtime": "^1.0.0-beta.9",
|
|
50
|
+
"@types/node": "^26.1.0",
|
|
51
|
+
"@types/react": "^19.2.17",
|
|
52
|
+
"@types/react-dom": "^19.2.3",
|
|
53
|
+
"@vitejs/plugin-react-swc": "^4.3.1",
|
|
54
|
+
"@excalidraw/excalidraw": "^0.18.1",
|
|
55
|
+
"agents": "^0.14.5",
|
|
56
|
+
"concurrently": "^10.0.3",
|
|
57
|
+
"esbuild": "^0.28.1",
|
|
58
|
+
"react": "^19.2.7",
|
|
59
|
+
"react-dom": "^19.2.7",
|
|
60
|
+
"tsx": "^4.22.5",
|
|
61
|
+
"typescript": "^6.0.3",
|
|
62
|
+
"valibot": "^1.4.2",
|
|
63
|
+
"vite": "^8.1.3",
|
|
64
|
+
"vitest": "^4.1.9",
|
|
65
|
+
"wrangler": "^4.118.0",
|
|
66
|
+
"@types/ws": "^8.5.13",
|
|
67
|
+
"@coopcli/shared": "workspace:*",
|
|
68
|
+
"@coopcli/agent-harness": "workspace:*"
|
|
69
|
+
},
|
|
70
|
+
"dependencies": {
|
|
71
|
+
"@anthropic-ai/claude-agent-sdk": "0.3.217",
|
|
72
|
+
"@anthropic-ai/sdk": "^0.109.1",
|
|
73
|
+
"@hono/node-server": "^2.0.8",
|
|
74
|
+
"hono": "^4.12.27",
|
|
75
|
+
"yaml": "^2.6.0",
|
|
76
|
+
"zod": "^4.4.3",
|
|
77
|
+
"ws": "^8.18.0"
|
|
78
|
+
}
|
|
76
79
|
}
|