forked from caoxiemeihao/nuxt-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.03 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
{
"name": "nuxt-electron",
"version": "0.4.1",
"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": "草鞋没号 <[email protected]>",
"license": "MIT",
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"types": "tsc -p tsconfig.build.json",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"esbuild": "*",
"vite-electron-plugin": "*"
},
"devDependencies": {
"@types/node": "^18.13.0",
"esbuild": "^0.17.8",
"nuxt": "^3.2.0",
"typescript": "^4.9.5",
"vite": "^4.1.1",
"vite-electron-plugin": "^0.7.4"
},
"files": [
"electron-env.d.ts",
"dist"
],
"keywords": [
"nuxt",
"plugin",
"module",
"electron"
]
}