-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·53 lines (53 loc) · 2.11 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
{
"name": "EduAnat2",
"productName": "EduAnat2",
"description": "EduAnat2",
"author": "Remi AGIER <remi@aigen.fr> (http://www.aigen.fr), Sebastien Valette <sebastien.valette@creatis.insa-lyon.fr> (http://www.creatis.insa-lyon.fr/~valette)",
"license": "CECILL-B",
"version": "3.0.1",
"repository": {
"type": "git",
"url": "git://github.com/valette/eduAnat2.git"
},
"main": "script.js",
"dependencies": {
"@electron/remote": "2.0.9"
},
"devDependencies": {
"@qooxdoo/framework": "7.4.2",
"async": "3.2.4",
"bowser": "2.11.0",
"chroma-js": "2.4.2",
"desk-ui": "3.1.2",
"electron": "22.0.1",
"electron-builder": "23.6.0",
"electron-packager": "17.1.1",
"lodash": "4.17.21",
"papaya-viewer": "1.0.1449",
"random-js": "2.1.0",
"socket.io-client": "4.5.4",
"three": "0.147.0",
"xterm": "5.1.0",
"xterm-addon-fit": "^0.7.0"
},
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"build": "npm run clean && npm run buildApps",
"buildAll": "npm run build && npm run package",
"buildApps": "npm run qooxdoo && cp script.js compiled/dist",
"clean": "rm -rf compiled && rm -rf dist && rm -rf EduAnat2-*",
"compile": "qx compile --target source && qx compile --target build",
"setDate": "date > source/resource/eduAnat2/buildDate.txt",
"deploy": "qx deploy --clean --out compiled/dist",
"dev": "qx compile --target source --watch --update-po-files",
"package": "npm run package-exe-deb-rpm && npm run package-bin && npm run zip",
"package-bin": "electron-packager --omit=dev --arch x64,arm64 --platform darwin,linux,mas,win32 --overwrite --prune=true --icon=icon.ico --azar=true compiled/dist/ EduAnat2",
"package-exe-deb-rpm": "electron-builder build -wl --config builder-effective-config.yaml",
"qooxdoo": "npm run setDate && qx package update && qx package install && npm run compile && npm run deploy && ./extra.sh",
"start": "electron .",
"updateAll": "rm -rf node_modules && git pull && npm install && npm run build",
"zip": "for i in ./EduAnat2-*; do zip -rqy \"dist/${i%/}.zip\" \"$i\"; done"
}
}