UNPKG

1.27 kBJSONView Raw
1{
2 "name": "electron-update-checker-notifier",
3 "version": "1.1.2",
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/FabioLucenaRibas/electron-update-checker-notifier",
13 "homepage": "https://github.com/FabioLucenaRibas/electron-update-checker-notifier",
14 "keywords": [
15 "electron",
16 "update",
17 "checker",
18 "notification",
19 "github",
20 "release"
21 ],
22 "author": "fabiolucenaribas",
23 "license": "MIT",
24 "scripts": {
25 "clean": "rm -rf ./dist",
26 "watch": "tsc --watch",
27 "prebuild": "npm run clean",
28 "build": "tsc",
29 "prepublishOnly": "npm run build"
30 },
31 "devDependencies": {
32 "@types/github-url-to-object": "^4.0.1",
33 "electron": "^25.2.0",
34 "typescript": "^5.1.3"
35 },
36 "dependencies": {
37 "@stdlib/string-format": "^0.0.3",
38 "@types/semver": "^7.5.0",
39 "axios": "^1.4.0",
40 "github-url-to-object": "^4.0.6",
41 "semver": "^7.5.3",
42 "typed-emitter": "^2.1.0"
43 },
44 "peerDependencies": {
45 "electron": "*"
46 },
47 "engines": {
48 "node": ">=16.9.0"
49 }
50}