forked from stulogy/vibe-prd
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.81 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.81 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
{
"name": "intent-blueprint-docs",
"version": "2.9.0",
"private": true,
"description": "Enterprise-grade AI documentation generator - 22 professional templates with MCP integration",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test",
"test:skills": "npx vitest run test/skill-validation.test.ts",
"test:docs": "npx vitest run test/doc-quality-eval.test.ts",
"test:evals": "ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY} npx vitest run test/doc-quality-eval.test.ts",
"clean": "turbo run clean",
"verify": "./scripts/verify-templates.sh",
"gen:skill-docs": "npx tsx scripts/gen-skill-docs.ts",
"skill:check": "npx tsx scripts/gen-skill-docs.ts --dry-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/intent-solutions-io/intent-blueprint-docs.git"
},
"keywords": [
"ai-documentation",
"prd-generator",
"mcp-server",
"claude-code",
"cursor-ide",
"enterprise-templates",
"documentation-generator",
"project-requirements"
],
"author": "Jeremy Longshore <jeremy@intentsolutions.io>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/intent-solutions-io/intent-blueprint-docs/issues"
},
"homepage": "https://github.com/intent-solutions-io/intent-blueprint-docs#readme",
"devDependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"tsx": "^4.19.0",
"turbo": "^2.0.0",
"typescript": "^5.3.0",
"vitest": "^4.0.0"
},
"overrides": {
"hono": ">=4.11.7",
"axios": ">=1.13.5",
"lodash": ">=4.17.23",
"qs": ">=6.14.2",
"undici": ">=6.23.0",
"fast-xml-parser": ">=4.4.1",
"ajv": ">=8.17.1"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "npm@10.0.0"
}