-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.65 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
{
"name": "ralph",
"version": "0.16.2",
"description": "A CLI tool for long-running PRD-driven development with Cursor CLI",
"bin": {
"ralph": "./src/index.tsx"
},
"type": "module",
"module": "src/index.tsx",
"scripts": {
"dev": "bun run src/index.tsx",
"build": "bun run scripts/build.ts",
"typecheck": "tsc --noEmit",
"check": "oxfmt . && oxlint --fix .",
"check:ci": "oxfmt --check . && oxlint .",
"prepare": "lefthook install",
"changeset": "changeset",
"version": "changeset version",
"release": "bun run build",
"test": "bun test",
"test:coverage": "bun test --coverage",
"knip": "knip",
"docs:dev": "bun run --cwd docs dev",
"docs:start": "bun run --cwd docs start",
"docs:build": "bun run --cwd docs build",
"docs:preview": "bun run --cwd docs preview",
"docs:check": "bun run --cwd docs check"
},
"dependencies": {
"ink": "7.1.1",
"ink-select-input": "6.2.0",
"ink-spinner": "5.0.0",
"react": "19.3.0",
"ts-pattern": "5.9.0",
"zustand": "5.0.15"
},
"devDependencies": {
"@changesets/cli": "3.0.2",
"@commitlint/cli": "21.2.2",
"@commitlint/config-conventional": "21.2.2",
"@types/bun": "1.4.2",
"@types/react": "19.3.0",
"knip": "6.35.1",
"lefthook": "2.1.12",
"oxfmt": "0.67.0",
"oxlint": "1.82.0",
"react-devtools-core": "8.0.0",
"typescript": "6.0.3"
},
"overrides": {
"@commitlint/config-validator>ajv": "8.20.0",
"ajv>fast-uri": "3.1.7",
"cosmiconfig>js-yaml": "4.3.2",
"react-devtools-core>shell-quote": "1.10.0",
"react-devtools-core>ws": "7.5.13"
},
"packageManager": "bun@1.4.2"
}