-
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) · 905 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 905 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
40
41
42
43
44
45
46
47
{
"name": "betternmtui",
"version": "0.2.0",
"description": "A terminal UI for NetworkManager built with React and OpenTUI",
"module": "src/index.tsx",
"type": "module",
"bin": {
"betternmtui": "bin/betternmtui.tsx"
},
"files": [
"bin",
"src"
],
"scripts": {
"start": "bun run src/index.tsx",
"dev": "bun --watch run src/index.tsx",
"build": "bun build src/index.tsx --outdir=dist --target=bun"
},
"keywords": [
"networkmanager",
"nmcli",
"tui",
"terminal",
"wifi",
"network",
"cli"
],
"license": "MIT",
"engines": {
"bun": ">=1.0.0"
},
"os": [
"linux"
],
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^19.2.14"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@opentui/core": "^0.1.88",
"@opentui/react": "^0.1.88",
"react": "^19.2.4"
}
}