forked from benvinegar/termdraw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.67 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.67 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
{
"name": "termdraw-workspace",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"start": "bun run index.ts",
"dev": "cd packages/app && bun --watch run src/cli.tsx",
"clean": "rm -rf dist packages/app/dist packages/opentui/dist",
"build": "cd packages/opentui && bun run build && cd ../app && bun run build",
"test": "cd packages/opentui && bun run test && cd ../app && bun run test && cd ../pi && bun run test",
"test:integration": "cd packages/app && bun run test:integration",
"typecheck": "cd packages/opentui && bun run typecheck && cd ../app && bun run typecheck && cd ../pi && bun run typecheck",
"pack:check": "cd packages/opentui && bun run pack:check && cd ../app && bun run pack:check && cd ../pi && bun run pack:check",
"smoke:pi": "cd packages/pi && bun run smoke:pi",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"check": "bun run format:check && bun run lint && bun run test && bun run typecheck",
"check:release": "bun run scripts/check-release-versions.mjs",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^24.5.2",
"lint-staged": "^16.4.0",
"oxfmt": "^0.44.0",
"oxlint": "^1.59.0",
"simple-git-hooks": "^2.13.1",
"tuistory": "^0.3.0",
"typescript": "^5.9.3"
},
"simple-git-hooks": {
"pre-commit": "bunx lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs,mts,cts,json,jsonc,md}": [
"oxfmt --write"
],
"*.{js,jsx,ts,tsx,mjs,cjs,mts,cts}": [
"oxlint --fix --quiet"
]
},
"packageManager": "bun@1.3.10"
}