forked from Arubinu/electron-custom-notifications
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.24 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
{
"name": "electron-custom-notifications",
"version": "1.1.0",
"description": "Cross-platform notifications using Electron's BrowserWindow",
"keywords": [
"electron",
"custom",
"notifications"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc && tsc -p example && node -e \"require('node:fs').copyFileSync(__dirname + '/src/container.html', __dirname + '/dist/container.html')\"",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint src --ext .ts",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"author": "Marcus Orciuch",
"license": "ISC",
"devDependencies": {
"@types/node": "^10.11.7",
"@types/uuid": "^3.4.4",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"electron": "^3.0.3",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.3.0",
"prettier": "^2.2.1",
"prettier-eslint": "^12.0.0",
"typescript": "^3.1.2"
},
"dependencies": {
"uuid": "^3.3.2"
}
}