-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.08 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.08 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
{
"name": "heritage-data-processor",
"version": "0.1.0-alpha.5",
"description": "Desktop & Server Application to process and persistently store digital heritage data using constructed pipelines",
"main": "src/main/main.js",
"scripts": {
"start": "electron .",
"start:alpha": "electron . -- --enable-alpha-features",
"build": "electron-builder",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Digital-Humanities-Jena/heritage-data-processor.git"
},
"keywords": [
"digital heritage",
"data processing"
],
"author": {
"name": "Dominik Ukolov",
"email": "dominik.ukolov@gmail.com"
},
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Digital-Humanities-Jena/heritage-data-processor/issues"
},
"homepage": "https://github.com/Digital-Humanities-Jena/heritage-data-processor#readme",
"devDependencies": {
"electron": "^36.3.2",
"electron-builder": "^26.0.12"
},
"build": {
"appId": "com.heritagedataprocessor.app",
"productName": "Heritage Data Processor",
"directories": {
"output": "dist"
},
"files": [
"src/**/*",
"package.json"
],
"extraResources": [
{
"from": "./packaged_python_backend/",
"to": "python_backend",
"filter": [
"**/*"
]
},
{
"from": "./server_app/data/",
"to": "data",
"filter": [
"**/*"
]
},
{
"from": "./pipeline_components/",
"to": "pipeline_components",
"filter": [
"**/*"
]
}
],
"mac": {
"category": "public.app-category.utilities",
"icon": "src/assets/images/icon.icns"
},
"win": {
"target": "nsis",
"icon": "src/assets/images/icon.ico"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"icon": "src/assets/images/icon.png"
}
},
"dependencies": {
"js-yaml": "^4.1.0",
"node-fetch": "^2.7.0",
"showdown": "^2.1.0"
}
}