-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.57 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 2.57 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "naissance-hgis",
"version": "1.9.5",
"description": "Historical GIS project for 3D map editing, geoprocessing, visualisation, and simulation over the long run.",
"main": "main.js",
"scripts": {
"build": "electron-builder",
"build:win": "electron-builder --win",
"build:mac": "electron-builder --mac",
"build:linux": "electron-builder --linux",
"start": "electron .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "uf-browser"
},
"keywords": [
"Naissance",
"GIS",
"HGIS",
"Vercengen",
"Electron",
"Node"
],
"build": {
"appId": "confoederatio.naissance",
"productName": "naissance",
"asar": true,
"directories": {
"output": "./_dist"
},
"extraResources": [
{
"from": "node_modules/node-blockly/",
"to": "node_modules/node-blockly/"
}
],
"files": [
"common/**/*",
"core/**/*",
"css/**/*",
"gfx/**/*",
"UF/**/*",
"main.js",
"index.html",
"package.json"
],
"win": {
"target": "nsis",
"icon": "gfx/icons/win/icon.ico"
},
"mac": {
"target": [
"dmg",
"zip"
],
"category": "public.app-category.utilities",
"icon": "gfx/icons/mac/icon.icns"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"icon": "gfx/",
"category": "Utility"
}
},
"nsis": {
"installerIcon": "gfx/icons/icon.ico",
"uninstallerIcon": "gfx/icons/icon.ico",
"uninstallDisplayName": "naissance",
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true
},
"author": "Confoederatio, Research Division",
"license": "MIT",
"devDependencies": {
"electron": "^38.7.2",
"electron-builder": "^26.0.12",
"electron-icon-maker": "^0.0.5"
},
"dependencies": {
"@electron/remote": "^2.1.3",
"acorn": "^5.0.3",
"acorn-dynamic-import": "^2.0.2",
"acorn-jsx-walk": "^1.0.1",
"better-docs": "^2.7.3",
"cubic-spline": "^3.0.3",
"file-saver": "^1.3.3",
"imports-loader": "^0.7.1",
"jsdoc": "^4.0.5",
"jsdom": "^28.0.0",
"json5": "^2.2.3",
"mathjs": "^15.1.0",
"minami": "^1.2.3",
"ml-matrix": "^6.12.1",
"netcdfjs": "^3.0.0",
"node-blockly": "https://github.com/JC-Orozco/node-blockly.git",
"pngjs": "^7.0.0",
"polylabel": "^2.0.1",
"puppeteer": "^24.37.5",
"selenium-webdriver": "^4.41.0",
"shell": "^0.12.0",
"snapsvg": "^0.5.1",
"taffydb": "^2.7.3"
}
}