-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.06 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
{
"name": "beforecode",
"version": "0.2.0",
"description": "Spec-first project planning toolkit for humans and AI coding agents.",
"type": "module",
"bin": {
"beforecode": "bin/beforecode.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BAKUGOS1/beforecode.git"
},
"homepage": "https://github.com/BAKUGOS1/beforecode#readme",
"bugs": {
"url": "https://github.com/BAKUGOS1/beforecode/issues"
},
"scripts": {
"cli": "node ./bin/beforecode.js",
"test": "node --test",
"test:cli": "node ./bin/beforecode.js help && node ./bin/beforecode.js list",
"prepublishOnly": "node ./scripts/verify-package.mjs"
},
"files": [
"assets",
"bin",
"src",
"templates",
"checklists",
"prompts",
"docs/cli-usage.md",
"examples",
"README.md",
"LICENSE"
],
"keywords": [
"prd",
"documentation",
"project-planning",
"software-architecture",
"ai-coding",
"qa",
"cli"
],
"author": "Mohit Kumar",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
}
}