-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 961 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 961 Bytes
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
{
"name": "pai-prd-cli",
"version": "0.1.0",
"description": "Scaffold and validate PRDs against the Splitting Test methodology — atomic, verifiable, ideal-state criteria for AI-driven engineering work.",
"license": "MIT",
"author": "Ivan Mokan <ivan.mokan@imscout.org>",
"homepage": "https://github.com/MultiNavi/pai-prd-cli",
"repository": {
"type": "git",
"url": "https://github.com/MultiNavi/pai-prd-cli.git"
},
"keywords": [
"prd",
"claude-code",
"ai-agents",
"splitting-test",
"ideal-state",
"spec-driven",
"cli",
"bun",
"typescript"
],
"type": "module",
"bin": {
"pai-prd": "./dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "bun build src/cli.ts --outdir dist --target node && chmod +x dist/cli.js",
"test": "bun test",
"dev": "bun run src/cli.ts"
},
"engines": {
"node": ">=18",
"bun": ">=1.0"
}
}