-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.71 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 3.71 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "nanokvm-usb",
"version": "1.1.4",
"description": "NanoKVM-USB Desktop",
"main": "./out/main/index.js",
"author": "sipeed.com",
"homepage": "https://github.com/sipeed/NanoKVM-USB",
"scripts": {
"format": "prettier --write .",
"lint": "eslint --cache .",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"build": "npm run typecheck && electron-vite build",
"build:capture": "swiftc -O -o resources/nanokvm-capture native/nanokvm-capture.swift",
"build:unpack": "npm run build && electron-builder --dir",
"build:win": "npm run build && electron-builder --win",
"build:mac": "npm run build:capture && electron-vite build && electron-builder --mac",
"build:linux": "electron-vite build && electron-builder --linux",
"build:win-full": "npm run build && electron-builder --win --x64 --arm64",
"build:mac-full": "npm run build:capture && electron-vite build && electron-builder --mac --x64 --arm64",
"build:linux-full": "electron-vite build && electron-builder --linux --x64 --arm64"
},
"dependencies": {
"@ant-design/icons": "^5.6.1",
"@electron-toolkit/preload": "^3.0.1",
"@electron-toolkit/utils": "^4.0.0",
"@radix-ui/react-scroll-area": "^1.2.10",
"@tailwindcss/vite": "^4.0.6",
"antd": "^5.29.3",
"clsx": "^2.1.1",
"electron-log": "^5.3.1",
"electron-updater": "^6.3.9",
"i18next": "^24.2.2",
"jotai": "^2.12.1",
"lucide-react": "^0.476.0",
"react-draggable": "^4.5.0",
"react-i18next": "^15.4.1",
"react-responsive": "^10.0.0",
"react-simple-keyboard": "^3.8.49",
"serialport": "^13.0.0",
"tailwindcss": "^4.0.6",
"vaul": "^1.1.2"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "^3.0.0",
"@electron-toolkit/eslint-config-ts": "^3.0.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@electron/notarize": "^2.5.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@types/node": "^22.13.4",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"electron": "^35.7.5",
"electron-builder": "^26.7.0",
"electron-vite": "^4.0.1",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.26",
"prettier": "^3.5.1",
"prettier-plugin-tailwindcss": "^0.6.11",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.7.3",
"vite": "^6.1.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"electron"
],
"overrides": {
"js-yaml": "^4.1.1",
"esbuild@<=0.24.2": ">=0.25.0",
"vite@>=6.1.0 <6.1.2": ">=6.1.2",
"vite@>=6.1.0 <6.1.3": ">=6.1.3",
"vite@>=6.1.0 <6.1.5": ">=6.1.5",
"@babel/runtime@<7.26.10": ">=7.26.10",
"@babel/helpers@<7.26.10": ">=7.26.10",
"vite@>=6.0.0 <=6.1.5": ">=6.1.6",
"vite@>=6.1.0 <6.1.4": ">=6.1.4",
"brace-expansion@>=1.0.0 <=1.1.11": ">=1.1.12",
"brace-expansion@>=2.0.0 <=2.0.1": ">=2.0.2",
"form-data@>=4.0.0 <4.0.4": ">=4.0.4",
"@eslint/plugin-kit@<0.3.4": ">=0.3.4",
"tmp@<=0.2.3": ">=0.2.4",
"electron@<35.7.5": ">=35.7.5",
"vite@>=6.0.0 <=6.3.5": ">=6.3.6",
"vite@>=6.0.0 <=6.4.0": ">=6.4.1",
"minimatch@<9.0.6": ">=9.0.6",
"minimatch@>=10.0.0 <10.2.1": ">=10.2.1",
"tar@<7.5.8": ">=7.5.8",
"ajv@<6.14.0": ">=6.14.0 <7",
"lodash@<4.17.23": ">=4.17.23",
"@isaacs/brace-expansion@<=5.0.0": ">=5.0.1"
}
}
}