-
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.02 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 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
39
40
41
42
43
44
45
46
47
{
"name": "@caolib/pkg-tui",
"version": "1.1.4",
"description": "Terminal TUI to manage global packages across npm/pnpm/bun/winget/scoop/cargo/choco/uv",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/caolib/pkg.git"
},
"keywords": [
"tui",
"package-manager",
"opentui",
"terminal",
"cli"
],
"module": "src/index.tsx",
"type": "module",
"bin": {
"pkg": "bin/pkg.js"
},
"files": [
"bin",
"src"
],
"scripts": {
"dev": "bun run --watch src/index.tsx",
"build": "bun build --compile ./src/index.tsx --outfile dist/pkg-tui",
"test": "bun test",
"lint": "biome lint",
"check": "biome check",
"format": "biome format --write"
},
"devDependencies": {
"@biomejs/biome": "^2.5.6",
"@types/bun": "latest",
"@types/react": "^19.2.17"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@opentui/core": "^0.4.5",
"@opentui/react": "^0.4.5",
"react": "^19.2.6"
}
}