-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
83 lines (83 loc) · 1.93 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
{
"name": "interactive-data-editor",
"description": "A Software to interactively edit data in a graphical manner.",
"author": "Koushik Naskar <koushik.naskar9@gmail.com>",
"copyright": "Copyright © January,2022 Koushik Naskar",
"homepage": "https://github.com/Koushikphy/Interactive-Data-Editor",
"version": "2.13.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "electron --trace-warnings .",
"dist": "electron-builder --publish never"
},
"build": {
"appId": "com.ide.app",
"productName": "Interactive Data Editor",
"artifactName": "${name}_${version}_${arch}.${ext}",
"asar": true,
"files": [
"!gulpFile.js",
"!**/node_modules/*/{LICENSE,License,AUTHORS}",
"!**/libscripts",
"!docs",
"!.vscode",
"!**/*.md"
],
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"AppImage",
"deb",
"snap"
],
"category": "Office",
"desktop": {
"Encoding": "UTF-8"
}
},
"win": {
"target": [
"msi",
"nsis"
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"perMachine": false,
"differentialPackage": true,
"displayLanguageSelector": true
},
"snap": {
"confinement": "strict",
"grade": "stable",
"plugs": [
"default",
"removable-media"
]
}
},
"devDependencies": {
"electron": "^17.3.1",
"electron-builder": "^22.9.1"
},
"dependencies": {
"@electron/remote": "^2.0.8",
"plotly.js-gl3d-dist": "^1.58.4"
}
}