-
-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.02 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.02 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@electron/packager",
"version": "0.0.0-development",
"description": "Customize and package your Electron app with OS-specific bundles (.app, .exe, etc.) via JS or CLI",
"type": "module",
"module": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./resedit": {
"types": "./dist/resedit.d.ts",
"default": "./dist/resedit.js"
}
},
"types": "./dist/index.d.ts",
"bin": {
"electron-packager": "./bin/electron-packager.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/electron/packager.git"
},
"author": "Mark Lee",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/electron/packager/issues"
},
"homepage": "https://github.com/electron/packager",
"files": [
"collaborators.md",
"bin",
"docs/*.md",
"dist",
"usage.txt"
],
"dependencies": {
"@electron/asar": "^4.0.1",
"@electron/get": "^4.0.2",
"@electron/notarize": "^3.1.0",
"@electron/osx-sign": "^2.2.0",
"@electron/universal": "^3.0.1",
"@electron/windows-sign": "^2.0.2",
"@malept/cross-spawn-promise": "^2.0.0",
"debug": "^4.4.1",
"extract-zip": "^2.0.1",
"filenamify": "^6.0.0",
"galactus": "^2.0.2",
"get-package-info": "^1.0.0",
"graceful-fs": "^4.2.11",
"junk": "^4.0.1",
"parse-author": "^2.0.0",
"plist": "^3.1.0",
"resedit": "^2.0.3",
"resolve": "^1.22.10",
"semver": "^7.7.2",
"yargs-parser": "^22.0.0"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.2",
"@types/debug": "^4.1.12",
"@types/graceful-fs": "^4.1.9",
"@types/lodash": "^4.17.20",
"@types/node": "~22.10.7",
"@types/parse-author": "^2.0.2",
"@types/plist": "^3.0.5",
"@types/resolve": "^1.20.6",
"@types/semver": "^7.7.0",
"@types/yargs-parser": "^21.0.3",
"@typescript-eslint/eslint-plugin": "8.39.1",
"@typescript-eslint/parser": "^8.39.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.2.1",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"lodash": "^4.17.21",
"prettier": "^3.6.2",
"tsx": "^4.20.4",
"typedoc": "~0.28.14",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"engines": {
"node": ">= 22.12.0"
},
"publishConfig": {
"provenance": true
},
"scripts": {
"build": "tsc",
"build:docs": "typedoc",
"lint": "prettier --check \"*.{ts,js,json}\" && eslint src --cache",
"prepack": "npm run build",
"test": "vitest run",
"prepare": "husky install"
},
"directories": {
"test": "test"
},
"keywords": [
"electron",
"packager",
"bundler",
"app"
],
"funding": {
"url": "https://github.com/electron/packager?sponsor=1"
},
"lint-staged": {
"*.json": "prettier --write",
"*.{js,ts}": [
"prettier --write",
"eslint --fix"
]
},
"packageManager": "yarn@4.10.2"
}