-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.51 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
{
"name": "watchme",
"version": "0.0.0",
"description": "",
"main": "main.js",
"type": "module",
"scripts": {
"build": "electron-builder",
"start": "electron .",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix && npm run format",
"format": "prettier --write ."
},
"keywords": [],
"author": "",
"license": "MIT License with Attribution Requirement",
"build": {
"files": [
"**/*",
"preload.js"
],
"appId": "com.mindmystory.watchme",
"productName": "WatchMe",
"directories": {
"output": "dist"
},
"mac": {
"target": [
"dmg",
"zip"
],
"category": "public.app-category.utilities",
"artifactName": "${productName}-${version}-universal.${ext}",
"hardenedRuntime": true,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"gatekeeperAssess": false
},
"win": {
"target": "nsis"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Utility"
}
},
"devDependencies": {
"electron": "^32.1.0",
"electron-builder": "^25.0.5",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3"
},
"dependencies": {
"@electron/remote": "^2.1.2",
"electron-store": "^10.0.0",
"ps-list": "^8.1.1"
}
}