-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.91 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.91 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
{
"name": "@electron/windows-sign",
"version": "0.0.0-development",
"description": "Codesign Electron Windows apps",
"type": "module",
"exports": "./dist/index.js",
"files": [
"dist",
"entitlements",
"README.md",
"LICENSE",
"bin",
"vendor"
],
"bin": {
"electron-windows-sign": "bin/electron-windows-sign.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/electron/windows-sign.git"
},
"author": {
"name": "Felix Rieseberg",
"email": "felix@felixrieseberg.com"
},
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/electron/windows-sign/issues"
},
"homepage": "https://github.com/electron/windows-sign",
"publishConfig": {
"provenance": true
},
"dependencies": {
"debug": "^4.3.4",
"graceful-fs": "^4.2.11",
"postject": "^1.0.0-alpha.6"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.1",
"@types/debug": "^4.1.10",
"@types/graceful-fs": "^4.1.6",
"@types/node": "~22.10.7",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"oxfmt": "^0.44.0",
"oxlint": "^1.59.0",
"oxlint-tsgolint": "^0.20.0",
"tsx": "^3.14.0",
"typedoc": "~0.28.0",
"typescript": "^6.0.2"
},
"scripts": {
"build": "tsc",
"build:docs": "typedoc",
"lint": "oxlint && oxfmt --check",
"lint:fix": "oxlint --fix && oxfmt --write",
"test": "node --import tsx --test \"test/**/*.spec.ts\"",
"prepublishOnly": "yarn build",
"prepare": "husky install"
},
"resolutions": {
"fsevents": "npm:@electron/fsevents@2.3.3-fork"
},
"engines": {
"node": ">=22.12.0"
},
"lint-staged": {
"*.{js,ts}": [
"oxlint --fix",
"oxfmt"
],
"*.{json}": [
"oxfmt"
]
},
"packageManager": "yarn@4.10.3+sha512.c38cafb5c7bb273f3926d04e55e1d8c9dfa7d9c3ea1f36a4868fa028b9e5f72298f0b7f401ad5eb921749eb012eb1c3bb74bf7503df3ee43fd600d14a018266f"
}