-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.64 KB
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
{
"name": "plainnote",
"productName": "Plainnote",
"version": "1.0.10",
"description": "Plain markdown notes, no clutter.",
"author": "Plainnote",
"license": "AGPL-3.0-only",
"private": true,
"main": "app/main.js",
"repository": "https://github.com/plainnoteio/app",
"build": {
"appId": "io.plainnote.app",
"productName": "Plainnote",
"mac": {
"category": "public.app-category.productivity",
"icon": "build/icon.icns",
"target": [
{
"target": "dmg",
"arch": [
"arm64"
]
},
{
"target": "zip",
"arch": [
"arm64"
]
}
],
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"notarize": true
},
"files": [
"app/main.js",
"app/preload.js",
"app/renderer.js",
"app/index.html",
"app/styles.css",
"assets/icon-1024.png"
],
"directories": {
"output": "dist"
},
"publish": {
"provider": "github",
"owner": "plainnoteio",
"repo": "app",
"releaseType": "release"
},
"afterPack": "scripts/adhoc-sign.js"
},
"scripts": {
"start": "electron .",
"dist": "CSC_IDENTITY_AUTO_DISCOVERY=false electron-builder --mac"
},
"dependencies": {
"electron-updater": "^6.8.9",
"marked": "^18.0.6"
},
"devDependencies": {
"electron": "^43.1.1",
"electron-builder": "^26.15.3"
},
"allowScripts": {
"electron@43.1.1": true,
"electron-builder@26.15.3": true
}
}