-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.02 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
{
"name": "tuidf",
"private": true,
"type": "module",
"module": "src/index.tsx",
"scripts": {
"dev": "bun run --watch src/index.tsx",
"setup": "bun run scripts/dev.ts setup",
"install:global": "bun run scripts/dev.ts install",
"build": "bun run lint && bun run format && bun run scripts/build.ts",
"build:release": "bun run lint && bun run format && bun run scripts/build.ts release",
"test": "bun test",
"lint": "oxlint .",
"format": "oxfmt --write .",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@opentui/core": "0.2.0",
"@opentui/keymap": "0.2.0",
"@opentui/solid": "0.2.0",
"docx": "^9.7.1",
"mupdf": "1.27.0",
"pdf-lib": "1.17.1",
"solid-js": "1.9.9"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@types/bun": "latest",
"@types/node": "^25.2.1",
"babel-preset-solid": "1.9.9",
"oxfmt": "^0.28.0",
"oxlint": "^1.43.0"
},
"peerDependencies": {
"typescript": "^5"
}
}