-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.37 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.37 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
{
"name": "@dashthis/studio-app",
"version": "3.5.1",
"private": true,
"license": "UNLICENSED",
"main": "build/electron.js",
"homepage": "./",
"description": "Accounts management for DashThis app",
"scripts": {
"release-win": "electron-builder --win --publish=always"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"canvas": "3.1.2",
"dotenv": "16.0.0",
"electron": "23.3.13",
"electron-builder": "23.6.0",
"electron-builder-notarize": "1.5.0",
"electron-notarize": "1.2.2"
},
"author": {
"name": "DashThis",
"email": "info@dashthis.com",
"url": "https://dashthis.com"
},
"build": {
"appId": "com.studio3",
"productName": "Studio 3",
"copyright": "Copyright © 2020 DashThis",
"dmg": {
"sign": false
},
"afterSign": "electron-builder-notarize",
"mac": {
"target": {
"target": "default",
"arch": [
"x64",
"arm64"
]
},
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "entitlements.mac.plist",
"entitlementsInherit": "entitlements.mac.plist",
"category": "com.dashthis.studio.stats"
},
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
}
}
}