-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 760 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 760 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
{
"name": "arch-gpu-vm-setup",
"version": "3.0.0",
"description": "GPU passthrough setup for Windows VM gaming on Arch Linux — now with an Ink-based CLI",
"license": "GPL-3.0",
"type": "module",
"bin": {
"arch-gpu-vm": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.tsx",
"start": "node dist/index.js",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"execa": "^9.5.2",
"ink": "^5.1.0",
"react": "^18.3.1"
},
"devDependencies": {
"@types/node": "^25.5.2",
"@types/react": "^18.3.12",
"@vitest/coverage-v8": "^4.1.2",
"ink-testing-library": "^4.0.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}