electronup 0.0.8 → 0.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin/electronup.js +33502 -259
- package/package.json +9 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "electronup",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.9",
|
|
4
4
|
"description": "融合构建 electron 应用需要的构建工具,保留原有配置习惯的命令行工具 ",
|
|
5
5
|
"author": "quiteer",
|
|
6
6
|
"license": "MIT",
|
|
@@ -31,11 +31,6 @@
|
|
|
31
31
|
"files": [
|
|
32
32
|
"dist"
|
|
33
33
|
],
|
|
34
|
-
"scripts": {
|
|
35
|
-
"dev": "tsup --watch",
|
|
36
|
-
"build": "tsup",
|
|
37
|
-
"update-version": "bumpp package.json"
|
|
38
|
-
},
|
|
39
34
|
"peerDependencies": {
|
|
40
35
|
"@types/node": ">= 16",
|
|
41
36
|
"node": ">= 16",
|
|
@@ -48,13 +43,18 @@
|
|
|
48
43
|
"electron": "^21.2.2",
|
|
49
44
|
"electron-builder": "^24.6.3",
|
|
50
45
|
"fs-extra": "^11.1.1",
|
|
51
|
-
"inquirer": "^9.2.10",
|
|
52
46
|
"portfinder": "^1.0.32",
|
|
53
47
|
"tsup": "^7.2.0",
|
|
54
48
|
"vite": "^4.4.9",
|
|
55
49
|
"yaml": "^2.3.1"
|
|
56
50
|
},
|
|
57
51
|
"devDependencies": {
|
|
58
|
-
"@types/inquirer": "^9.0.3"
|
|
52
|
+
"@types/inquirer": "^9.0.3",
|
|
53
|
+
"inquirer": "^9.2.10"
|
|
54
|
+
},
|
|
55
|
+
"scripts": {
|
|
56
|
+
"dev": "tsup --watch",
|
|
57
|
+
"build": "tsup",
|
|
58
|
+
"update-version": "bumpp package.json"
|
|
59
59
|
}
|
|
60
|
-
}
|
|
60
|
+
}
|