-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 765 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 765 Bytes
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
{
"name": "@hona/ralph-cli",
"version": "0.1.0",
"type": "module",
"bin": {
"ralph": "./bin/ralph"
},
"scripts": {
"dev": "bun run --conditions=browser src/index.ts",
"build": "bun run scripts/build.ts",
"build:single": "bun run scripts/build.ts --single",
"publish": "bun run scripts/publish.ts",
"typecheck": "bun x tsc --noEmit",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage"
},
"dependencies": {
"@opencode-ai/sdk": "1.1.1",
"@opentui/core": "0.1.68",
"@opentui/solid": "0.1.68",
"solid-js": "^1.9.0",
"yargs": "^18.0.0"
},
"devDependencies": {
"@types/bun": "latest",
"@types/yargs": "^17.0.35",
"typescript": "^5.0.0"
}
}