-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.25 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.25 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
{
"name": "draftwise",
"version": "0.2.5",
"description": "Codebase-aware product specs. AI scans your repo, then drafts specs that fit it.",
"main": "src/index.js",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src test",
"format": "prettier --write src test",
"prepublishOnly": "npm test && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/4nkur/draftwise.git"
},
"author": "Ankur Goyal <04.ankur@gmail.com> (https://github.com/4nkur)",
"license": "MIT",
"type": "module",
"bugs": {
"url": "https://github.com/4nkur/draftwise/issues"
},
"homepage": "https://github.com/4nkur/draftwise#readme",
"bin": {
"draftwise": "bin/draftwise.js"
},
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.2.1",
"globals": "^17.5.0",
"prettier": "^3.8.3",
"vitest": "^4.1.5"
},
"dependencies": {
"yaml": "^2.8.3"
},
"files": [
"bin",
"src",
"plugin/skills",
"README.md",
"LICENSE"
],
"keywords": [
"product-spec",
"product-management",
"spec-driven-development",
"ai-agent",
"cli",
"claude-code",
"cursor",
"codebase-aware"
]
}