-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
70 lines (70 loc) · 1.48 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
{
"name": "vite-electron-plugin",
"version": "0.8.3",
"description": "High-performance, esbuild-based Vite Electron plugin",
"main": "index.js",
"types": "types",
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.js"
},
"./plugin": {
"import": "./plugin/index.mjs",
"require": "./plugin/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/electron-vite/vite-electron-plugin.git"
},
"author": "草鞋没号 <[email protected]>",
"license": "MIT",
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"types": "tsc -p tsconfig.build.json && tsc -p tsconfig.plugin.json",
"prepublishOnly": "npm run test && npm run build",
"test": "vitest run"
},
"peerDependencies": {
"acorn": "*",
"esbuild": "*"
},
"peerDependenciesMeta": {
"acorn": {
"optional": true
},
"esbuild": {
"optional": true
}
},
"dependencies": {
"fast-glob": "^3.2.12",
"notbundle": "~0.4.0",
"vite-plugin-electron": "~0.14.1"
},
"devDependencies": {
"@types/node": "^18.11.18",
"acorn": "^8.8.1",
"esbuild": "^0.16.12",
"rollup": "^3.9.0",
"typescript": "^4.9.4",
"vite": "^4.0.3",
"vite-plugin-utils": "^0.3.6",
"vitest": "^0.26.2"
},
"files": [
"plugin",
"electron-env.d.ts",
"types",
"index.mjs",
"index.js"
],
"keywords": [
"vite",
"plugin",
"electron",
"unbuild"
]
}