-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.5 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
49
50
51
52
53
54
55
56
57
58
{
"private": true,
"name": "my-nextron-app",
"description": "My application description",
"version": "1.0.0",
"author": "Ketan Patel <[email protected]>",
"main": "app/background.js",
"scripts": {
"dev": "nextron --renderer-port 9999",
"build": "nextron build",
"postinstall": "electron-builder install-app-deps"
},
"dependencies": {
"@babel/runtime-corejs3": "^7.26.0",
"@hookform/resolvers": "^3.9.1",
"@types/yup": "^0.32.0",
"electron-serve": "^1.3.0",
"electron-store": "^8.2.0",
"react-hook-form": "^7.53.2",
"react-icons": "^5.3.0",
"ssh2shell": "^2.0.9",
"uuid": "^11.0.3",
"yup": "^1.4.0"
},
"devDependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
"@chakra-ui/theme-tools": "^2.1.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@types/node": "^20.11.16",
"@types/react": "^18.2.52",
"electron": "^31.0.1",
"electron-builder": "^24.13.3",
"framer-motion": "^11.0.28",
"next": "^14.2.4",
"nextron": "^9.4.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.6.3"
},
"build": {
"appId": "com.example.yourapp",
"productName": "YourAppName",
"directories": {
"buildResources": "renderer/public"
},
"win": {
"icon": "renderer/public/images/icon.ico"
},
"mac": {
"icon": "renderer/public/images/icon.icns"
},
"linux": {
"icon": "renderer/public/images/icon.png"
}
}
}