-
Notifications
You must be signed in to change notification settings - Fork 133
/
package.json
46 lines (46 loc) · 1.26 KB
/
package.json
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
{
"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
},
"dependencies": {
"github-url-to-object": "^4.0.4",
"ms": "^2.1.1"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/github-url-to-object": "^4.0.1",
"@types/jest": "^29.5.14",
"@types/ms": "^0.7.31",
"@types/node": "^22.10.1",
"electron": "^33.2.1",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.13.0",
"husky": "^9.1.7",
"jest": "^29.0.0",
"lint-staged": "^15.2.10",
"prettier": "^3.0.3",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0"
},
"scripts": {
"lint": "npx eslint src test && npx prettier '**/*.{ts,js,mts,mjs,cjs,cts}' --check",
"prepare": "tsc && husky",
"test": "jest",
"watch": "jest --watch --notify --notifyMode=change --coverage"
},
"lint-staged": {
"*.{js,ts,cjs,cts,mjs,mts}": [
"eslint --cache --fix",
"prettier --write"
]
}
}