-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1023 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1023 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
31
32
33
34
35
36
37
38
39
{
"name": "agent-tui",
"version": "0.0.0",
"private": true,
"description": "",
"license": "MIT",
"type": "module",
"main": "main.ts",
"module": "main.ts",
"scripts": {
"postinstall": "[ -d .opencode ] && cd .opencode && bun install || true",
"prepare": "simple-git-hooks",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"format": "oxfmt .",
"actions:up": "actions-up",
"typecheck": "tsgo --noEmit",
"dev": "bun --watch main.ts",
"start": "bun main.ts"
},
"dependencies": {
"@opentui/core": "^0.1.92"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^25.5.0",
"@typescript/native-preview": "^7.0.0-dev.20260329.1",
"actions-up": "^1.12.0",
"oxfmt": "^0.35.0",
"oxlint": "^1.57.0",
"simple-git-hooks": "^2.13.1"
},
"peerDependencies": {
"typescript": "^5.9.3"
},
"simple-git-hooks": {
"pre-commit": "bun install --ignore-scripts --offline && bun lint && bun typecheck && bun run actions:up"
}
}