-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.56 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.56 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
{
"name": "ralph",
"version": "0.16.0",
"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 . && eslint --fix .",
"check:ci": "oxfmt --check . && oxlint . && eslint .",
"prepare": "husky",
"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": "6.8.0",
"ink-select-input": "6.2.0",
"ink-spinner": "5.0.0",
"react": "19.2.4",
"ts-pattern": "5.9.0",
"zustand": "5.0.11"
},
"devDependencies": {
"@changesets/cli": "2.29.8",
"@commitlint/cli": "20.3.1",
"@commitlint/config-conventional": "20.4.3",
"@eslint/js": "9.39.2",
"@types/bun": "1.3.10",
"@types/react": "19.2.14",
"eslint": "9.39.2",
"husky": "9.1.7",
"knip": "5.85.0",
"nano-staged": "^0.9.0",
"oxfmt": "0.36.0",
"oxlint": "1.51.0",
"react-devtools-core": "7.0.1",
"typescript": "5.9.3",
"typescript-eslint": "8.56.1"
},
"packageManager": "bun@1.3.10"
}