This repository has been archived by the owner on Jul 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
128 lines (128 loc) · 3.49 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "osgeo-glossarist",
"version": "0.0.5",
"description": "Cross-platform graphical terminal for collaborative editing of OSGeo glossary",
"main": "index.js",
"repository": "[email protected]:geolexica/osgeo-glossarist.git",
"bugs": "https://github.com/geolexica/osgeo-glossarist/issues",
"author": "Ribose Inc. <[email protected]>",
"license": "MIT",
"electronWebpack": {
"staticSourceDirectory": "src/static",
"main": {
"webpackConfig": "main.webpack.js"
},
"renderer": {
"webpackConfig": "renderer.webpack.js"
}
},
"scripts": {
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"dist": "cross-env DEBUG=electron-builder electron-builder",
"dist:win": "electron-builder -w",
"dist:mac": "electron-builder -m",
"pack": "electron-builder --dir",
"release": "electron-builder --publish always",
"cdist": "yarn compile && electron-builder -mlw",
"cdist:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null"
},
"build": {
"productName": "OSGeo Glossarist",
"appId": "org.geolexica.osgeo",
"afterSign": "./scripts/hooks/after-sign.js",
"mac": {
"category": "public.app-category.productivity",
"icon": "build/icon.icns",
"target": "dmg",
"gatekeeperAssess": false,
"hardenedRuntime": true,
"entitlements": "assets/mac/entitlements.mac.inherit.plist",
"entitlementsInherit": "assets/mac/entitlements.mac.inherit.plist"
},
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 440,
"y": 150,
"type": "link",
"path": "/Applications"
}
],
"artifactName": "geolexica-osgeo-${version}.${ext}"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
},
{
"target": "portable"
}
],
"icon": "build/icon.ico"
},
"nsis": {
"runAfterFinish": true,
"installerIcon": "build/icon.ico",
"artifactName": "electron-gha-${version}.${ext}"
},
"portable": {
"artifactName": "geolexica-osgeo.exe"
},
"appx": {
"backgroundColor": "#464646",
"publisherDisplayName": "ituob",
"artifactName": "geolexica-osgeo-${version}.${ext}"
},
"publish": [
{
"provider": "github",
"releaseType": "release"
}
]
},
"devDependencies": {
"@types/fs-extra": "^8.0.1",
"@types/node": "^12.11.7",
"@types/react": "^16.8.6",
"@types/react-dom": "^16.8.6",
"@types/throttle-debounce": "^2.1.0",
"cross-env": "^6.0.3",
"electron": "^7.0.0",
"electron-builder": "^21.2.0",
"electron-notarize": "^0.2.1",
"electron-react-devtools": "^0.5.3",
"electron-webpack": "^2.7.4",
"electron-webpack-ts": "^3.2.0",
"node-sass": "~4.12.0",
"sass-loader": "~7.1.0",
"typescript": "^3.6.4",
"webpack": "~4.35.2"
},
"dependencies": {
"@blueprintjs/core": "^3.16.2",
"@blueprintjs/icons": "^3.9.1",
"@blueprintjs/select": "^3.10.0",
"fs-extra": "^8.1.0",
"isomorphic-git": "^0.55.4",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"source-map-support": "^0.5.12",
"sse": "https://github.com/riboseinc/sse-elements#sse-elements-v0.0.20-gitpkg",
"throttle-debounce": "^2.1.0"
},
"resolutions": {
"lodash": "4.17.13",
"set-value": "2.0.1",
"mixin-deep": "1.3.2",
"js-yaml": "3.13.1"
}
}