-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 822 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 822 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
{
"name": "devhub",
"version": "0.1.0",
"description": "A TUI project manager with git integration",
"bin": {
"devhub": "./src/index.tsx"
},
"type": "module",
"main": "src/index.tsx",
"scripts": {
"dev": "bun run src/index.tsx",
"compile": "bun run scripts/build.ts",
"typecheck": "tsc --noEmit",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"format": "oxfmt --write .",
"format:check": "oxfmt .",
"check": "oxlint . && oxfmt .",
"check:fix": "oxlint --fix . && oxfmt --write ."
},
"dependencies": {
"@opentui/core": "^0.1.74",
"@opentui/solid": "^0.1.74",
"simple-git": "^3.27.0",
"solid-js": "^1.9.0"
},
"devDependencies": {
"@types/bun": "latest",
"oxfmt": "^0.26.0",
"oxlint": "^1.41.0",
"typescript": "^5.0.0"
}
}