-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.19 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "aibox",
"productName": "AIBox",
"version": "0.0.1",
"description": "My Electron application description",
"main": ".vite/build/main.js",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"preinstall": "npx only-allow npm",
"lint": "eslint --ext .ts,.tsx ."
},
"devDependencies": {
"@electron-forge/cli": "^7.4.0",
"@electron-forge/maker-deb": "^7.4.0",
"@electron-forge/maker-rpm": "^7.4.0",
"@electron-forge/maker-squirrel": "^7.4.0",
"@electron-forge/maker-zip": "^7.4.0",
"@electron-forge/plugin-auto-unpack-natives": "^7.4.0",
"@electron-forge/plugin-fuses": "^7.4.0",
"@electron-forge/plugin-vite": "^7.4.0",
"@electron/fuses": "^1.8.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-vue": "^5.0.4",
"electron": "30.0.1",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"ts-node": "^10.9.2",
"typescript": "~4.5.4",
"vite": "^5.2.10"
},
"keywords": [],
"engines": {
"node": ">=20.12.2"
},
"author": {
"name": "曾星旗",
"email": "me@zengxingqi.com",
"url": "https://canicode.cn"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/themages/aibox.git"
},
"bugs": {
"url": "https://github.com/themages/aibox/issues"
},
"homepage": "https://github.com/themages/aibox",
"dependencies": {
"electron-squirrel-startup": "^1.0.0"
},
"config": {
"forge": {
"plugins": [
{
"name": "@electron-forge/plugin-vite",
"config": {
"build": [
{
"entry": "src/main.ts",
"config": "vite.main.config.ts"
},
{
"entry": "src/preload.ts",
"config": "vite.preload.config.ts"
}
],
"renderer": [
{
"name": "main_window",
"config": "vite.renderer.config.ts"
}
]
}
}
]
}
}
}