-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.42 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.42 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
{
"name": "netbrowser",
"version": "1.0.0",
"main": "main.js",
"scripts": {
"vite:dev": "vite ./src",
"vite:build": "vite build ./src --emptyOutDir",
"app": "npm run vite:build && electron .",
"app:build": "npm run vite:build && electron-builder",
"app:start": "electron ."
},
"keywords": [],
"author": "",
"license": "UPL-1.0",
"description": "UnSetSoft",
"AppName": "NetBrowser",
"chromium": "140.0.7339.133",
"build": {
"publish": null,
"appId": "com.unsetsoft.net",
"productName": "NetBrowser",
"directories": {
"buildResources": "build"
},
"files": [
"www/**/*",
"main.js",
"preload.js",
"package.json"
],
"win": {
"target": "nsis"
},
"nsis": {
"oneClick": true,
"perMachine": false,
"allowToChangeInstallationDirectory": false
}
},
"devDependencies": {
"@eslint/js": "9.39.2",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "5.1.2",
"babel-plugin-react-compiler": "^1.0.0",
"electron": "39.2.7",
"electron-builder": "26.4.0",
"eslint": "9.39.2",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-react-refresh": "0.4.26",
"globals": "17.0.0",
"vite": "7.3.1"
},
"dependencies": {
"crypto": "1.0.1",
"hotkeys-js": "4.0.0",
"lucide-react": "^0.562.0",
"react": "19.2.3",
"react-dom": "19.2.3"
}
}