-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.5 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.5 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
{
"name": "heraspec",
"version": "0.1.13",
"description": "Universal spec-first development framework + CLI for all project types and AI tools",
"keywords": [
"heraspec",
"specs",
"cli",
"ai",
"development",
"spec-driven",
"wordpress",
"perfex",
"laravel"
],
"homepage": "https://github.com/PolyXGO/HeraSpec",
"repository": {
"type": "git",
"url": "https://github.com/PolyXGO/HeraSpec.git"
},
"license": "MIT",
"author": {
"name": "PolyXGO",
"email": "polyxgo@gmail.com",
"url": "https://headrandom.com"
},
"type": "module",
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"bin": {
"heraspec": "./bin/heraspec.js"
},
"files": [
"dist",
"bin",
"README.md",
"LICENSE",
"!dist/**/*.test.js",
"!dist/**/__tests__",
"!dist/**/*.map"
],
"scripts": {
"build": "node build.js",
"dev": "tsc --watch",
"dev:cli": "npm run build && node bin/heraspec.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=20.19.0"
},
"devDependencies": {
"@types/node": "^24.2.0",
"esbuild": "^0.24.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@inquirer/core": "^10.2.2",
"@inquirer/prompts": "^7.8.0",
"chalk": "^5.5.0",
"commander": "^14.0.0",
"ora": "^8.2.0",
"zod": "^4.0.17"
}
}