-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
95 lines (95 loc) · 2.26 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "electron-incremental-update",
"type": "module",
"version": "2.2.5",
"description": "Electron incremental update tools with Vite plugin, support bytecode protection",
"author": "subframe7536",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/subframe7536/electron-incremental-update.git"
},
"keywords": [
"electron",
"incremental update",
"updater",
"bytecode"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./vite": {
"import": "./dist/vite.js"
},
"./utils": {
"import": "./dist/utils.js",
"require": "./dist/utils.cjs"
},
"./provider": {
"import": "./dist/provider.js",
"require": "./dist/provider.cjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"files": [
"dist",
"provider.d.ts",
"provider.js",
"utils.d.ts",
"utils.js",
"vite.d.ts",
"vite.js"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup && node fix-module.cjs",
"release": "pnpm test && pnpm run build && bumpp --all && npm publish",
"test": "vitest --run",
"test:dev": "vitest",
"format": "eslint . --fix"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"peerDependencies": {
"@electron/asar": "*",
"esbuild": "*"
},
"dependencies": {
"@babel/core": "^7.26.9",
"@babel/plugin-transform-arrow-functions": "^7.25.9",
"@babel/plugin-transform-template-literals": "^7.26.8",
"@subframe7536/type-utils": "^0.1.6",
"ci-info": "^4.1.0",
"local-pkg": "^1.0.0",
"magic-string": "^0.30.17",
"selfsigned": "^2.4.1",
"vite-plugin-electron": "^0.29.0"
},
"devDependencies": {
"@subframe7536/eslint-config": "^1.1.8",
"@types/babel__core": "^7.20.5",
"@types/node": "^20.17.19",
"bumpp": "^10.0.3",
"electron": "34.2.0",
"eslint": "^9.20.1",
"tsup": "^8.3.6",
"typescript": "^5.7.3",
"vite": "^6.1.0",
"vite-plugin-electron": "^0.29.0",
"vitest": "^3.0.5"
},
"pnpm": {
"overrides": {
"is-core-module": "npm:@nolyfill/is-core-module@^1"
},
"onlyBuiltDependencies": [
"electron",
"esbuild"
]
}
}