-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.1 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
{
"name": "electron-astro-vite-plugin-electron",
"type": "module",
"version": "1.0.0",
"main": "dist-electron/main.js",
"scripts": {
"test": "electron .",
"dist": "electron-builder",
"dev": "astro dev && electron .",
"build": "astro build && electron-builder",
"preview": "astro preview",
"astro": "astro"
},
"build": {
"appId": "this.app",
"productName": "electron-astro-vite-plugin-electron",
"compression": "store",
"asar": "false",
"files": [
"**/*",
"dist/**/*"
],
"directories": {
"output": "out",
"buildResources": "dist"
},
"dmg": {
"title": "${productName} ${version}"
}
},
"dependencies": {
"@astrojs/react": "3.6.0",
"fs-extra": "11.2.0"
},
"devDependencies": {
"astro": "4.11.3",
"electron": "31.1.0",
"electron-builder": "24.13.3",
"eslint": "9.6.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-astro": "1.2.2",
"eslint-plugin-prettier": "5.1.3",
"prettier": "3.3.2",
"prettier-plugin-astro": "0.14.0",
"vite-plugin-electron": "0.28.7"
}
}