-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.17 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.17 KB
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
{
"name": "@usrz/vite-electron",
"version": "0.0.1",
"description": "Vite environment for Electron applications",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"bin": {
"vite-electron-init": "dist/init.mjs"
},
"scripts": {
"build": "plug",
"coverage": "plug coverage",
"dev": "plug coverage -w src -w test",
"lint": "plug lint",
"test": "plug test",
"transpile": "plug transpile"
},
"keywords": [
"vite"
],
"author": "Pier Fumagalli <pier@usrz.com>",
"license": "MIT",
"files": [
"*.md",
"dist/",
"src/",
"resources/"
],
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"dependencies": {
"split2": "^4.2.0"
},
"devDependencies": {
"@plugjs/build": "^0.6.60",
"@types/node": "^24.3.1",
"@types/split2": "^4.2.3",
"electron": "^38.0.0",
"picocolors": "^1.1.1",
"rollup": "^4.50.1",
"vite": "^7.1.5"
},
"peerDependencies": {
"electron": ">=28",
"vite": ">=7"
}
}