-
Notifications
You must be signed in to change notification settings - Fork 142
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.3 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.3 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
{
"name": "update-electron-app",
"version": "0.0.0-development",
"description": "A drop-in module that adds autoUpdating capabilities to Electron apps",
"repository": "https://github.com/electron/update-electron-app",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"publishConfig": {
"provenance": true
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.1",
"electron": "^35.7.5",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.13.0",
"husky": "^9.1.7",
"jest": "^29.0.0",
"lint-staged": "^16.4.0",
"prettier": "^3.0.3",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0"
},
"scripts": {
"build": "tsc",
"lint": "eslint src test && prettier '**/*.{ts,js,mts,mjs,cjs,cts}' --check",
"prepack": "yarn build",
"prepare": "husky",
"test": "jest",
"watch": "jest --watch --notify --notifyMode=change --coverage"
},
"lint-staged": {
"*.{js,ts,cjs,cts,mjs,mts}": [
"eslint --cache --fix",
"prettier --write"
]
},
"packageManager": "yarn@4.10.3+sha512.c38cafb5c7bb273f3926d04e55e1d8c9dfa7d9c3ea1f36a4868fa028b9e5f72298f0b7f401ad5eb921749eb012eb1c3bb74bf7503df3ee43fd600d14a018266f"
}