-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.22 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
83
84
85
86
87
88
89
90
91
{
"name": "electron-incremental-update",
"version": "3.1.0",
"description": "Electron incremental update tools with Vite plugin, support bytecode protection",
"keywords": [
"bytecode",
"electron",
"incremental update",
"updater"
],
"license": "MIT",
"author": "subframe7536",
"repository": {
"type": "git",
"url": "git+https://github.com/electron-vite/electron-incremental-update.git"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"typesVersions": {
"*": {
"provider": [
"./dist/provider.d.mts"
],
"utils": [
"./dist/utils.d.mts"
]
}
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./provider": {
"import": "./dist/provider.mjs",
"require": "./dist/provider.cjs"
},
"./utils": {
"import": "./dist/utils.mjs",
"require": "./dist/utils.cjs"
},
"./vite": "./dist/vite.mjs",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"dev": "tsdown --watch",
"build": "tsdown",
"play": "bun run build && vite",
"play:build": "vite build",
"release": "bun run qa && bun run test && bun run build && bumpp --all",
"test": "bun test --preload ./tests/setup.ts",
"test:dev": "bun test --watch",
"qa": "oxlint --fix && oxfmt && tsc --noEmit"
},
"dependencies": {
"@babel/plugin-transform-arrow-functions": "^7.29.7",
"@babel/plugin-transform-template-literals": "^7.29.7",
"ci-info": "^4.4.0",
"selfsigned": "^5.5.0",
"vite-plugin-electron": "^1.1.0"
},
"devDependencies": {
"@subf/config": "^0.2.1",
"@tsdown/css": "^0.22.2",
"@types/babel__core": "^7.20.5",
"@types/bun": "^1.3.14",
"bumpp": "^11.1.0",
"electron": "42.2.0",
"oxfmt": "^0.54.0",
"oxlint": "^1.69.0",
"tsdown": "^0.22.2",
"typescript": "^6.0.3",
"vite": "^8.0.16"
},
"peerDependencies": {
"@babel/core": "^7.29.7",
"@electron/asar": "4.2.0"
},
"overrides": {
"@electron/get": "^5.0.0"
}
}