-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.16 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
{
"name": "specflow",
"version": "1.0.0",
"description": "Security-first, cost-aware development methodology",
"type": "module",
"main": "dist/cli.js",
"bin": {
"sf": "dist/cli.js",
"specflow": "dist/installer.js"
},
"files": [
"dist",
"slash-commands",
"ralph",
"agents",
".specflow-lib",
"templates"
],
"scripts": {
"build": "esbuild src/cli.ts --bundle --platform=node --outfile=dist/cli.js --format=esm --banner:js='import { createRequire } from \"module\"; const require = createRequire(import.meta.url);' && esbuild src/installer.ts --bundle --platform=node --outfile=dist/installer.js --format=esm --external:picocolors",
"dev": "tsx src/cli.ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@types/picomatch": "^4.0.2",
"commander": "^12.0.0",
"picocolors": "^1.1.0",
"picomatch": "^4.0.3",
"yaml": "^2.8.2",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"esbuild": "^0.24.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=20.0.0"
}
}