-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
56 lines (56 loc) · 1.25 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
{
"name": "nuxt-electron",
"version": "0.7.0",
"description": "Nuxt Integration with Electron",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./*": "./*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/caoxiemeihao/nuxt-electron.git"
},
"author": "Leo Wang(草鞋没号) <[email protected]>",
"license": "MIT",
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"types": "tsc -p tsconfig.build.json",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"vite-plugin-electron": "*",
"vite-plugin-electron-renderer": "*"
},
"peerDependenciesMeta": {
"vite-plugin-electron-renderer": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^20.12.7",
"esbuild": "^0.20.2",
"electron": "^29.3.0",
"nuxt": "^3.11.2",
"typescript": "^5.4.5",
"vite": "^5.2.8",
"vite-plugin-electron": "^0.28.4",
"vite-plugin-electron-renderer": "^0.14.5"
},
"files": [
"electron-env.d.ts",
"dist"
],
"keywords": [
"nuxt",
"plugin",
"module",
"electron"
]
}