@coopcli/specplan 5.2.0
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/README.md +40 -0
- package/dist/cli/index.js +2650 -0
- package/dist/client/assets/index-DevSOQuK.css +1 -0
- package/dist/client/assets/index-GtBmBt6t.js +78 -0
- package/dist/client/index.html +13 -0
- package/package.json +67 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<title>SpecPlan</title>
|
|
7
|
+
<script type="module" crossorigin src="/assets/index-GtBmBt6t.js"></script>
|
|
8
|
+
<link rel="stylesheet" crossorigin href="/assets/index-DevSOQuK.css">
|
|
9
|
+
</head>
|
|
10
|
+
<body>
|
|
11
|
+
<div id="root"></div>
|
|
12
|
+
</body>
|
|
13
|
+
</html>
|
package/package.json
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@coopcli/specplan",
|
|
3
|
+
"version": "5.2.0",
|
|
4
|
+
"description": "coopcli specplan — plan your project as a DAG of specs and user stories on a React Flow canvas, generate OpenSpec changes per spec card. Local-only.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"specplan": "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/specplan",
|
|
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
|
+
"test:e2e": "playwright test",
|
|
24
|
+
"build": "vite build",
|
|
25
|
+
"build:cli": "vite build && esbuild server/cli-entry.ts --bundle --platform=node --format=esm --packages=external --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 --banner:js='#!/usr/bin/env node' --outfile=dist/cli/index.js",
|
|
26
|
+
"cli": "npm run build:cli && node dist/cli/index.js",
|
|
27
|
+
"prepublishOnly": "npm run check && npm run test && npm run build:cli",
|
|
28
|
+
"site:dev": "wrangler dev --config site/wrangler.jsonc --port 4324 --inspector-port 9236",
|
|
29
|
+
"site:deploy": "npm run build:viewer && wrangler deploy --config site/wrangler.jsonc",
|
|
30
|
+
"build:viewer": "vite build --base /products/specplan/app/ --outDir ../../site/public/products/specplan/app --emptyOutDir"
|
|
31
|
+
},
|
|
32
|
+
"keywords": [
|
|
33
|
+
"react-flow",
|
|
34
|
+
"dag",
|
|
35
|
+
"roadmap",
|
|
36
|
+
"openspec",
|
|
37
|
+
"spec-driven-development"
|
|
38
|
+
],
|
|
39
|
+
"author": "",
|
|
40
|
+
"license": "MIT",
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@coopcli/shared": "workspace:*",
|
|
43
|
+
"@playwright/test": "^1.49.0",
|
|
44
|
+
"@types/node": "^26.1.0",
|
|
45
|
+
"@types/react": "^19.2.17",
|
|
46
|
+
"@types/react-dom": "^19.2.3",
|
|
47
|
+
"@vitejs/plugin-react-swc": "^4.3.1",
|
|
48
|
+
"@xyflow/react": "^12.3.0",
|
|
49
|
+
"concurrently": "^10.0.3",
|
|
50
|
+
"esbuild": "^0.28.1",
|
|
51
|
+
"react": "^19.2.7",
|
|
52
|
+
"react-dom": "^19.2.7",
|
|
53
|
+
"tsx": "^4.22.5",
|
|
54
|
+
"typescript": "^6.0.3",
|
|
55
|
+
"vite": "^8.1.3",
|
|
56
|
+
"vitest": "^4.1.9",
|
|
57
|
+
"wrangler": "^4.106.0"
|
|
58
|
+
},
|
|
59
|
+
"dependencies": {
|
|
60
|
+
"@anthropic-ai/sdk": "^0.109.1",
|
|
61
|
+
"@fission-ai/openspec": "^1.5.0",
|
|
62
|
+
"@hono/node-server": "^2.0.8",
|
|
63
|
+
"hono": "^4.12.27",
|
|
64
|
+
"yaml": "^2.6.0",
|
|
65
|
+
"zod": "^4.4.3"
|
|
66
|
+
}
|
|
67
|
+
}
|