-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.21 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
{
"name": "twint-desktop",
"version": "1.0.0",
"description": "twint desktop app",
"main": "./app.js",
"homepage": "https://twint.io",
"scripts": {
"start": "electron .",
"build": "electron-packager . --all twint-desktop --dir --ignore-modules=node_modules/electron-*",
"package": "electron-forge package",
"make": "electron-forge make"
},
"author": "Twint Project <francescopoldi@pielco11.ovh>",
"license": "MIT",
"dependencies": {
"chart.js": "^2.7.2",
"elasticsearch": "^15.1.1",
"elasticsearch-scroll-stream": "^1.1.3",
"heap": "^0.2.6",
"node-notifier": "^5.2.1",
"wordcloud": "^1.1.0"
},
"devDependencies": {
"electron": "^7.2.4",
"electron-builder": "^20.36.2",
"electron-builder-squirrel-windows": "^20.28.3",
"electron-packager": "^12.2.0",
"electron-rebuild": "^1.8.2"
},
"build": {
"appId": "io.twint",
"productName": "Twint",
"compression": "normal",
"artifactName": "${name}-${os}-v${version}-${arch}.${ext}",
"directories": {
"output": "./build"
},
"linux": {
"category": "Graphics",
"target": [
"AppImage",
"deb"
],
"executableName": "twint-desktop"
}
}
}