-
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.2 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.2 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": "@kud/gpuswitch-cli",
"version": "0.1.1",
"type": "module",
"description": "Switch between integrated, discrete, and auto GPU on Intel Macs via pmset",
"bin": {
"gpuswitch": "dist/index.js"
},
"scripts": {
"dev": "tsx src/index.tsx",
"build": "tsup src/index.tsx --format esm --dts",
"build:watch": "tsup src/index.tsx --format esm --dts --watch",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"test": "vitest run"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/react": "19.2.14",
"@typescript-eslint/eslint-plugin": "8.58.2",
"@typescript-eslint/parser": "8.58.2",
"eslint": "10.2.1",
"eslint-config-prettier": "10.1.8",
"prettier": "3.8.3",
"tsup": "^8.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0",
"vitest": "4.1.4"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kud/gpuswitch-cli"
},
"homepage": "https://kud.github.io/gpuswitch-cli",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"chalk": "5.6.2",
"ink": "7.0.1",
"ink-spinner": "5.0.0",
"react": "19.2.5"
}
}