UNPKG

1.06 kBJSONView Raw
1{
2 "name": "electron-update-notifier",
3 "version": "1.7.0",
4 "description": "Notify user about new app updates by fetching release from Github repository.",
5 "main": "dist/index.js",
6 "types": "dist/index.d.ts",
7 "files": [
8 "src",
9 "dist",
10 "types"
11 ],
12 "repository": "https://github.com/ankurk91/electron-update-notifier",
13 "homepage": "https://github.com/ankurk91/electron-update-notifier",
14 "keywords": [
15 "electron",
16 "update",
17 "notification",
18 "github",
19 "release"
20 ],
21 "author": "ankurk91",
22 "license": "MIT",
23 "scripts": {
24 "clean": "rm -rf ./dist",
25 "watch": "tsc --watch",
26 "prebuild": "npm run clean",
27 "build": "tsc",
28 "prepublishOnly": "npm run build"
29 },
30 "devDependencies": {
31 "@types/github-url-to-object": "^4.0.0",
32 "electron": "^21",
33 "typescript": "^4.8.4"
34 },
35 "dependencies": {
36 "axios": "^1.1.3",
37 "compare-versions": "^5.0",
38 "github-url-to-object": "^4.0.4"
39 },
40 "peerDependencies": {
41 "electron": "*"
42 },
43 "engines": {
44 "node": ">=16.9.0"
45 }
46}