-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.77 KB
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
{
"name": "pm-workspace-kit",
"version": "0.29.0",
"private": true,
"description": "An opinionated PM/SA workspace kit — Docusaurus docs site, traceability scripts, CLI (pmk), and desktop app. Monorepo.",
"license": "MIT",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"start": "npm --workspace apps/docs run start",
"build": "npm --workspace apps/docs run build",
"serve": "npm --workspace apps/docs run serve",
"traceability:matrix": "node packages/core/src/traceability.js matrix --cwd=apps/docs",
"traceability:check": "node packages/core/src/traceability.js check --cwd=apps/docs",
"confluence:sync": "node packages/core/src/confluence-sync.js sync --cwd=apps/docs",
"confluence:sync:dry": "node packages/core/src/confluence-sync.js sync --cwd=apps/docs --dry-run",
"confluence:list": "node packages/core/src/confluence-sync.js list --cwd=apps/docs",
"desktop:dev": "npm --workspace apps/desktop run dev",
"desktop:build": "npm --workspace apps/desktop run build",
"cli:build": "npm --workspace packages/cli run build",
"pmk": "npm --workspace packages/cli run start --",
"version:bump": "node scripts/bump-version.mjs"
},
"overrides": {
"serialize-javascript": "^7.0.5",
"uuid": "^14.0.0",
"webpack": "~5.105.0",
"esbuild": "^0.25.0",
"vite": "^6.3.5",
"dompurify": "^3.3.4",
"shell-quote": "1.8.4",
"joi": "^18.2.1"
},
"engines": {
"node": ">=20.0"
},
"keywords": [
"product-management",
"systems-analysis",
"traceability",
"adr",
"strangler-fig",
"documentation",
"ai-native",
"pm-workflow",
"template",
"electron",
"cli"
],
"repository": {
"type": "git",
"url": "https://github.com/hanfour/pm-workspace-kit"
}
}