-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.85 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
{
"name": "switchify-pc",
"version": "0.1.14",
"description": "Desktop companion app for Switchify Android.",
"main": "out/main/index.js",
"scripts": {
"dev": "node scripts/dev.cjs",
"build": "electron-vite build",
"native:build": "node scripts/build-cursor-overlay-helper.cjs",
"native:build-overlay": "npm run native:build",
"native:smoke-overlay": "node scripts/smoke-cursor-overlay-helper.cjs",
"native:smoke-text": "node scripts/smoke-text-input-helper.cjs",
"package:win": "npm run build && npm run native:build && electron-builder --win --x64 --publish never && node scripts/sign-win-artifacts.cjs --update-latest-yml",
"package:win:verify-uiaccess": "node scripts/verify-win-uiaccess-package.cjs",
"signing:create-dev-cert": "node scripts/create-dev-signing-cert.cjs",
"typecheck": "tsc --noEmit -p tsconfig.json && tsc --noEmit -p tsconfig.node.json",
"test": "vitest run"
},
"keywords": [
"electron",
"switchify",
"accessibility",
"desktop-control"
],
"author": "Owen McGirr",
"license": "AGPL-3.0-or-later",
"type": "commonjs",
"homepage": "https://github.com/switchifyapp/switchify-pc#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/switchifyapp/switchify-pc.git"
},
"bugs": {
"url": "https://github.com/switchifyapp/switchify-pc/issues"
},
"devDependencies": {
"@types/node": "^25.9.1",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.2.0",
"electron": "^39.8.10",
"electron-builder": "^26.8.1",
"electron-vite": "^5.0.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"typescript": "^6.0.3",
"vite": "^7.3.3",
"vitest": "^4.1.8"
},
"dependencies": {
"@nut-tree-fork/libnut-win32": "^2.7.5",
"electron-updater": "^6.8.9",
"lucide-react": "^1.21.0"
}
}