-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·90 lines (90 loc) · 1.98 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
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
{
"name": "upverse",
"version": "1.3.0",
"author": {
"name": "Max Planck Digital Library",
"email": "[email protected]"
},
"description": "Direct file upload to research data repository",
"license": "MIT",
"main": "dist/main/main.js",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"build": "tsc",
"start": "rm -rf ./dist && npm run build && electron ./dist/main/main.js --trace-warnings",
"deploy": "rm -rf ./dist && rm -rf ./out && npm run build && electron-builder --publish=never",
"watch": "tsc -w",
"lint": "eslint -c .eslintrc --ext .ts ./src"
},
"build": {
"appId": "de.mpg.mpdl.edmond.upverse",
"artifactName": "${name}-${version}-${os}-${arch}.${ext}",
"icon": "assets/favicons/favicon",
"directories": {
"output": "out"
},
"files": [
"!.github",
"!.idea"
],
"mac": {
"target": {
"target": "zip",
"arch": [
"x64",
"arm64"
]
},
"hardenedRuntime": true
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
},
{
"target": "zip",
"arch": [
"x64"
]
}
]
},
"linux": {
"icon": "assets/favicons/favicon.icns",
"target": [
"deb",
"tar.gz"
],
"category": "Utility"
}
},
"repository": "https://github.com/MPDL/upverse",
"keywords": [
"edmond",
"research",
"data",
"repository",
"dataverse",
"upload"
],
"devDependencies": {
"@types/bootstrap": "^5.2.10",
"@types/mime-types": "^2.1.4",
"electron": "^31.2.1",
"electron-builder": "^24.13.3",
"typescript": "^5.5.3"
},
"dependencies": {
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3",
"electron-log": "^5.1.4",
"form-data": "^4.0.0",
"http": "^0.0.1-security",
"mime-types": "^2.1.35",
"rxjs": "^7.8.1"
}
}