-
Notifications
You must be signed in to change notification settings - Fork 212
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.87 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.87 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
78
79
80
81
82
{
"name": "ralph-tui",
"version": "0.11.0",
"description": "Ralph TUI - AI Agent Loop Orchestrator",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"bin": {
"ralph-tui": "./dist/cli.js"
},
"scripts": {
"build": "bun build ./src/cli.tsx --outdir ./dist --target bun --sourcemap=external --external @opentui/core --external @opentui/react --external react && bun build ./src/index.ts --outdir ./dist --target bun --sourcemap=external --external @opentui/core --external @opentui/react --external react && cp -r assets dist/ && cp -r skills dist/ && bun run build:templates",
"build:templates": "mkdir -p dist/plugins/trackers/builtin/beads dist/plugins/trackers/builtin/beads-bv dist/plugins/trackers/builtin/json dist/plugins/trackers/builtin/beads-rust && cp src/plugins/trackers/builtin/beads/template.hbs dist/plugins/trackers/builtin/beads/ && cp src/plugins/trackers/builtin/beads-bv/template.hbs dist/plugins/trackers/builtin/beads-bv/ && cp src/plugins/trackers/builtin/json/template.hbs dist/plugins/trackers/builtin/json/ && cp src/plugins/trackers/builtin/beads-rust/template.hbs dist/plugins/trackers/builtin/beads-rust/",
"build:types": "tsc --emitDeclarationOnly --declaration --outDir dist",
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"clean": "rm -rf dist",
"dev": "bun run ./src/cli.tsx",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"prepublishOnly": "bun run build",
"website:dev": "cd website && bun run dev",
"website:build": "cd website && bun run build",
"website:lint": "cd website && bun run lint"
},
"files": [
"dist"
],
"keywords": [
"tui",
"ai",
"agent",
"orchestrator",
"terminal",
"cli"
],
"author": "subsy",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/subsy/ralph-tui.git"
},
"homepage": "https://github.com/subsy/ralph-tui",
"bugs": {
"url": "https://github.com/subsy/ralph-tui/issues"
},
"packageManager": "bun@1.3.6",
"engines": {
"bun": ">=1.3.6"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/handlebars": "^4.1.0",
"@types/node": "^25.0.6",
"@types/node-notifier": "^8.0.5",
"@types/react": "^19.2.8",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.52.0",
"bun-types": "^1.3.6",
"eslint": "^9.39.2",
"typescript": "^5.9.3"
},
"dependencies": {
"@linear/sdk": "^76.0.0",
"@opentui/core": "^0.1.72",
"@opentui/react": "^0.1.72",
"handlebars": "^4.7.8",
"node-notifier": "^8.0.2",
"react": "^19.2.3",
"smol-toml": "^1.6.0",
"yaml": "^2.8.2",
"zod": "^4.3.5"
}
}