-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.19 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.19 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "cdli-api-client-app",
"version": "1.2.4-pre-release",
"description": "An app to use the CDLI API client",
"author": "Ilī-Yahu",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ili-yahu/cdli-api-client-app.git"
},
"keywords": [
"cdli",
"api",
"client",
"cuneiform"
],
"main": "main.js",
"scripts": {
"start": "electron .",
"package": "electron-builder --dir",
"make": "electron-builder",
"make-win": "electron-builder --win",
"make-mac": "electron-builder --mac",
"make-linux": "electron-builder --linux"
},
"build": {
"appId": "com.cdli.api.id",
"asar": true,
"asarUnpack": [
"**/*.node",
"**/*.so"
],
"mac": {
"category": "public.app-category.utilities",
"target": [
{
"target": "dmg",
"arch": [
"universal"
]
}
],
"icon": "resources/cdli-api-client-app-logo.icns"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
],
"icon": "resources/cdli-api-client-app-logo.ico"
},
"nsis": {
"oneClick": false,
"perMachine": true,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "CDLI API Client App",
"installerIcon": "resources/cdli-api-client-app-logo.ico",
"uninstallerIcon": "resources/cdli-api-client-app-logo.ico",
"deleteAppDataOnUninstall": true
},
"linux": {
"target": [
"deb",
"rpm",
"AppImage"
],
"icon": "resources/cdli-api-client-app-logo.png",
"category": "Utility"
},
"files": [
"main.js",
"index.html",
"styles.css",
"preload.js",
"renderer.js",
"resources/**",
"node_modules/cdli-api-client/**"
]
},
"bin": {
"cdli": "./node_modules/cdli-api-client/cli.js"
},
"dependencies": {
"cdli-api-client": "github:cdli-gh/framework-api-client"
},
"devDependencies": {
"electron": "^33.0.1",
"electron-builder": "^25.1.8"
}
}