-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.98 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.98 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
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
{
"name": "electron-incremental-update",
"type": "module",
"version": "2.4.3",
"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": "tsdown --watch",
"build": "tsdown && 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": {
"@babel/core": "^7",
"@electron/asar": "*"
},
"dependencies": {
"@babel/plugin-transform-arrow-functions": "^7.27.1",
"@babel/plugin-transform-template-literals": "^7.27.1",
"ci-info": "^4.3.1",
"local-pkg": "^1.1.2",
"magic-string": "^0.30.21",
"selfsigned": "^3.0.1",
"vite-plugin-electron": "^0.29.0"
},
"devDependencies": {
"@subframe7536/type-utils": "^0.2.0",
"@types/babel__core": "^7.20.5",
"@types/node": "^22.18.12",
"bumpp": "^10.4.0",
"electron": "38.4.0",
"tsdown": "0.19.0",
"typescript": "^5.9.3",
"unplugin-raw": "^0.6.4",
"vite": "^8.0.0-beta.7"
}
}