-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.77 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.77 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
{
"name": "ralphy-spec",
"version": "0.3.6",
"description": "One-command setup for Ralph loop + OpenSpec workflows across Cursor, OpenCode, and Claude Code.",
"license": "BSD-3-Clause",
"author": "Wenqing Yu",
"homepage": "https://ralphy-spec.org",
"repository": {
"type": "git",
"url": "git+https://github.com/wenqingyu/ralphy-openspec.git"
},
"bugs": {
"url": "https://github.com/wenqingyu/ralphy-openspec/issues"
},
"keywords": [
"openspec",
"ralph",
"ralph-wiggum",
"ai",
"cursor",
"claude",
"claude-code",
"opencode",
"spec-driven",
"ai-coding",
"ai-assistant"
],
"bin": {
"ralphy-spec": "bin/ralphy-spec.js"
},
"files": [
"bin/",
"dist/",
"scripts/",
"README.md",
"README.zh.md",
"README.ko.md",
"README.ja.md",
"CHANGELOG.md",
"LICENSE"
],
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"build": "npm run clean && tsc -p tsconfig.json && node scripts/copy-templates.mjs",
"clean": "node scripts/clean.mjs",
"dev": "node --enable-source-maps dist/index.js --help",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"prepublishOnly": "npm run build"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"better-sqlite3": "^12.2.0",
"chalk": "^5.4.1",
"cli-table3": "^0.6.5",
"commander": "^14.0.0",
"execa": "^9.6.0",
"fast-glob": "^3.3.3",
"fs-extra": "^11.3.0",
"inquirer": "^12.6.3",
"minimatch": "^10.0.3",
"ora": "^9.0.0",
"yaml": "^2.8.0",
"zod": "^4.1.5"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.13.0",
"typescript": "^5.7.3",
"vitest": "^4.0.18"
}
}