-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 4.95 KB
/
package.json
File metadata and controls
131 lines (131 loc) · 4.95 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "specorator",
"version": "0.8.0",
"description": "Specorator — template for spec-driven, agentic software development. The workflow is the deliverable.",
"keywords": [
"agents",
"agentic",
"claude-code",
"specorator",
"spec-driven",
"template",
"workflow"
],
"homepage": "https://github.com/Luis85/agentic-workflow",
"bugs": {
"url": "https://github.com/Luis85/agentic-workflow/issues"
},
"license": "MIT",
"author": "Luis Mendez",
"repository": "https://github.com/Luis85/agentic-workflow",
"type": "module",
"bin": {
"specorator": "./scripts/specorator-bin.mjs"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"files": [
".claude/",
".claude-plugin/",
".codex/",
".github/",
"agents/",
"claude-plugin/",
"docs/",
"examples/",
"memory/",
"plugins/",
"scripts/",
"sites/",
"templates/",
"tests/",
"AGENTS.md",
"CHANGELOG.md",
"CLAUDE.md",
"npm-shrinkwrap.json"
],
"scripts": {
"doctor": "tsx scripts/doctor.ts",
"init:project": "tsx scripts/init-project.ts",
"self-check": "tsx scripts/self-check.ts",
"verify": "tsx scripts/verify.ts",
"verify:json": "tsx scripts/verify-json.ts",
"verify:changed": "tsx scripts/verify-changed.ts",
"project:setup:github": "tsx scripts/github-project-setup.ts",
"automation:registry:discover": "tsx scripts/automation-registry-discover.ts",
"quality:metrics": "tsx scripts/quality-metrics.ts",
"roadmap:digest": "tsx scripts/roadmap-digest.ts",
"roadmap:evidence": "tsx scripts/roadmap-evidence.ts",
"typecheck:scripts": "tsc --project tsconfig.scripts.json --noEmit",
"typecheck:sites-tests": "tsx scripts/typecheck-sites-tests.ts",
"test": "npm run test:scripts --",
"test:scripts": "tsx scripts/test-scripts.ts",
"test:scripts:coverage": "npm run test:scripts -- --coverage",
"check:fast": "tsx scripts/check-fast.ts",
"check:content": "tsx scripts/check-content.ts",
"check:workflow": "tsx scripts/check-workflow.ts",
"check:automation-registry": "tsx scripts/check-automation-registry.ts",
"check:agents": "tsx scripts/check-agents.ts",
"check:cli-contract": "tsx scripts/check-cli-contract.ts",
"check:links": "tsx scripts/check-markdown-links.ts",
"check:adr-index": "tsx scripts/check-adr-index.ts",
"check:commands": "tsx scripts/check-command-docs.ts",
"check:script-docs": "tsx scripts/check-script-docs.ts",
"check:product-page": "tsx scripts/check-product-page.ts",
"check:public-surfaces": "tsx scripts/check-public-surfaces.ts",
"check:sites-tokens-mirror": "tsx scripts/check-sites-tokens-mirror.ts",
"check:workflow-docs": "tsx scripts/check-workflow-docs.ts",
"check:claude-plugin": "tsx scripts/check-claude-plugin.ts",
"validate:claude-plugin": "npm run build:claude-plugin && claude plugin validate claude-plugin/specorator",
"check:frontmatter": "tsx scripts/check-frontmatter.ts",
"check:obsidian": "tsx scripts/check-obsidian.ts",
"check:obsidian-assets": "tsx scripts/check-obsidian-assets.ts",
"check:specs": "tsx scripts/check-spec-state.ts",
"check:roadmaps": "tsx scripts/check-roadmaps.ts",
"check:traceability": "tsx scripts/check-traceability.ts",
"check:token-budget": "tsx scripts/check-token-budget.ts",
"check:backlog": "tsx scripts/check-backlog.ts",
"sync:backlog": "tsx scripts/sync-backlog.ts",
"check:index-bleed": "tsx scripts/check-index-bleed.ts",
"check:release-package-contents": "tsx scripts/check-release-package-contents.ts",
"check:release-readiness": "tsx scripts/check-release-readiness.ts",
"build:release-archive": "tsx scripts/build-release-archive.ts",
"build:claude-plugin": "tsx scripts/build-claude-plugin.ts",
"prepack": "node scripts/release-prepack-guard.mjs",
"docs:scripts": "tsx scripts/fix-script-docs.ts",
"fix": "tsx scripts/fix-generated.ts",
"fix:obsidian": "tsx scripts/fix-obsidian.ts",
"fix:adr-index": "tsx scripts/fix-adr-index.ts",
"fix:commands": "tsx scripts/fix-command-docs.ts",
"fix:script-docs": "npm run docs:scripts --",
"graph": "tsx scripts/graphify-run.ts",
"graph:update": "tsx scripts/graphify-run.ts --update",
"sites:install": "npm --prefix sites install",
"sites:dev": "npm --prefix sites run dev",
"sites:build": "npm --prefix sites run build",
"sites:preview": "npm --prefix sites run preview",
"snapshot": "tsx scripts/snapshot.ts"
},
"engines": {
"node": ">=20.6"
},
"dependencies": {
"@octokit/rest": "^22.0.1",
"tsx": "^4.20.6",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/jsdom": "^28.0.1",
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.1.5",
"axe-core": "^4.11.4",
"jsdom": "^29.1.1",
"typedoc": "^0.28.19",
"typedoc-plugin-markdown": "^4.11.0",
"typescript": "^6.0.2",
"vitest": "^4.1.5",
"yaml": "^2.8.3"
}
}