-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.46 KB
/
package.json
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
{
"type": "module",
"name": "hyper-launcher",
"description": "Flexible and powerful application launcher for macOS.",
"author": "konbu310",
"main": "dist/main/main.js",
"license": "MIT",
"scripts": {
"rimraf": "rimraf",
"start": "electron .",
"watch": "npm-run-all 'rimraf dist' --parallel watch:* start",
"watch:main": "node scripts/build.mjs -w",
"watch:renderer": "vite dev",
"build": "npm-run-all --parallel 'rimraf dist' 'rimraf build' --parallel build:*",
"build:main": "node scripts/build.mjs --prd",
"build:renderer": "NODE_ENV=production vite build",
"prepack": "npm run build",
"pack": "node scripts/pack.mjs",
"archive": "node scripts/archive.mjs",
"fmt": "prettier --write '**/*.{ts,tsx}'"
},
"dependencies": {
"classnames": "^2.5.1",
"electron-store": "^10.0.1",
"execa": "^9.5.2",
"immutability-helper": "^3.1.1",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@electron/packager": "^18.3.6",
"@types/node": "^22.13.10",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.3.4",
"commander": "^13.1.0",
"electron": "^35.0.0",
"electron-reload": "^2.0.0-alpha.1",
"esbuild": "^0.25.0",
"eslint-plugin-react-hooks": "^5.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.0",
"vite": "6.2.1"
}
}