-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.04 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
{
"name": "@namewta/specforge",
"version": "0.0.16",
"description": "AI-native spec-driven development workflow tool",
"author": "namewta",
"keywords": [
"specforge",
"specs",
"cli",
"ai",
"development"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/NAMEWTA/specforge"
},
"homepage": "https://github.com/NAMEWTA/specforge#readme",
"bugs": {
"url": "https://github.com/NAMEWTA/specforge/issues"
},
"type": "module",
"bin": {
"specforge": "./dist/cli/index.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"templates",
"!dist/**/*.test.js",
"!dist/**/__tests__",
"!dist/**/*.map",
"!**/__pycache__",
"!**/*.pyc",
"!**/.DS_Store"
],
"scripts": {
"dev": "tsx src/cli/index.ts",
"build": "tsc -p tsconfig.json && node scripts/inject-shebang.mjs",
"build:check-bin": "node scripts/verify-bin.mjs",
"test": "vitest run",
"lint": "eslint .",
"format": "prettier --write .",
"check": "pnpm lint && pnpm test && pnpm build",
"prepublishOnly": "pnpm check"
},
"engines": {
"node": ">=24.14.1"
},
"dependencies": {
"chalk": "5.6.2",
"commander": "14.0.1",
"fs-extra": "11.3.2",
"globby": "14.1.0",
"inquirer": "12.9.6",
"js-yaml": "4.1.0",
"ora": "8.2.0",
"zod": "4.1.5"
},
"devDependencies": {
"@eslint/js": "9.16.0",
"@types/fs-extra": "^11.0.4",
"@types/js-yaml": "^4.0.9",
"@types/node": "22.13.10",
"eslint": "9.16.0",
"husky": "9.1.7",
"lint-staged": "15.5.0",
"prettier": "3.4.2",
"tsx": "4.19.2",
"typescript": "5.6.3",
"typescript-eslint": "^8.59.1",
"vitest": "2.1.8"
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"printWidth": 100,
"tabWidth": 2
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.md": [
"prettier --write"
]
}
}