-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 4.36 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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "ntfy-electron",
"version": "2.0.0",
"description": "ntfy push notifications wrapped in electron as a web app",
"homepage": "https://github.com/xdpirate/ntfy-electron",
"author": "xdpirate & Aetherinox",
"contributors": [
{
"name": "xdpirate",
"email": "[email protected]",
"url": "https://github.com/xdpirate"
},
{
"name": "Aetherinox",
"email": "[email protected]",
"url": "https://github.com/Aetherinox"
}
],
"funding": [
{
"type": "individual",
"url": "https://buymeacoffee.com/aetherinox"
}
],
"publishConfig": {
"access": "public"
},
"build": {
"appId": "com.ntfydesktop.id",
"asarUnpack": [
"./node_modules/toasted-notifier/**/*",
"./node_modules/semver/**/*"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/xdpirate/ntfy-electron.git"
},
"bugs": {
"url": "https://github.com/xdpirate/ntfy-electron/issues"
},
"license": "GPLv3",
"keywords": [
"ntfy",
"push notifications",
"electron",
"web app",
"desktop",
"windows"
],
"main": "index.js",
"scripts": {
"test": "npx playwright test",
"pretest": "npm run lint",
"lint": "eslint index.js",
"start": "electron .",
"package-win": "electron-packager . ntfy-electron --asar --platform=win32 --arch=all --icon=ntfy.ico --overwrite --ignore=\"^/dist|/build|/.github*|/test-*|/tests*|/playwright*|.all-contributorsrc|.editorconfig|.eslintrc|/.git*|.git*|.npm*|.prettier*\" --prune=true --out=build --appCopyright=\"Copyright (c) 2024\" --win32metadata.FileDescription=\"ntfy desktop client with Electron wrapper\" --win32metadata.ProductName=\"ntfy desktop\" --win32metadata.OriginalFilename=\"ntfy-desktop.exe\" --win32metadata.CompanyName=\"https://github.com/xdpirate/ntfy-electron\"",
"package-linux": "electron-packager . ntfy-electron --asar --platform=linux --arch=all --icon=ntfy.png --overwrite --ignore=\"^/dist|/build|/.github*|/test-*|/tests*|/playwright*|.all-contributorsrc|.editorconfig|.eslintrc|/.git*|.git*|.npm*|.prettier*\" --prune=true --out=build --appCopyright=\"Copyright (c) 2024\" --win32metadata.FileDescription=\"ntfy desktop client with Electron wrapper\" --win32metadata.ProductName=\"ntfy desktop\" --win32metadata.OriginalFilename=\"ntfy-desktop.exe\" --win32metadata.CompanyName=\"https://github.com/xdpirate/ntfy-electron\"",
"package-mac": "electron-packager . ntfy-electron --asar --platform=darwin --arch=all --icon=ntfy.icns --overwrite --ignore=\"^/dist|/build|/.github*|/test-*|/tests*|/playwright*|.all-contributorsrc|.editorconfig|.eslintrc|/.git*|.git*|.npm*|.prettier*\" --prune=true --out=build --appCopyright=\"Copyright (c) 2024\" --win32metadata.FileDescription=\"ntfy desktop client with Electron wrapper\" --win32metadata.ProductName=\"ntfy desktop\" --win32metadata.OriginalFilename=\"ntfy-desktop.exe\" --win32metadata.CompanyName=\"https://github.com/xdpirate/ntfy-electron\"",
"pretty": "prettier . --write",
"pretty:check": "prettier . --check",
"pretty:ignore": "prettier . --write --ignore-unknown",
"contrib:add": "all-contributors add",
"contrib:generate": "all-contributors generate",
"version": "node -p require('./package.json').version;"
},
"devDependencies": {
"@aetherinox/noxenv": "^1.0.0",
"@playwright/test": "^1.45.3",
"@testing-library/jest-dom": "^6.4.8",
"@types/node": "^20.14.11",
"@types/testing-library__jest-dom": "^5.14.9",
"@types/uuid": "^10.0.0",
"electron": "^31.2.1",
"electron-playwright-helpers": "^1.7.1",
"eslint": "^8.0.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.4.0",
"jimp": "^0.22.12",
"prettier": "^3.3.3"
},
"dependencies": {
"custom-electron-prompt": "^1.5.8",
"moment": "2.30.1",
"semver": "^7.3.5",
"toasted-notifier": "^10.0.2",
"uuid": "^10.0.0"
}
}