-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.55 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": "mattermost-cloudnative-bootstrapper",
"version": "0.0.1",
"description": "A desktop application for bootstrapping the Mattermost Operator and its dependencies, plus some optional utilities",
"main": "main.js",
"build": {
"appId": "com.mattermost.mattermost-cloudnative-bootstrapper",
"files": [
"webapp/build/**/*",
"main.js",
"package.json",
"build/**/*",
"assets/**/*"
],
"directories": {
"buildResources": "assets"
},
"mac": {
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
}
]
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "NODE_ENV=development concurrently \"electron main.js\" \"cd webapp && npm start\"",
"react-build": "cd webapp && npm run build",
"go-build": "make build_macos",
"build": "CSSMERR_TP_NOT_TRUSTED=true npm run react-build && npm run go-build && electron-builder",
"build-electron": "electron-builder"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nickmisasi/mattermost-cloudnative-bootstrapperboard.git"
},
"author": "Nick Misasi",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/nickmisasi/mattermost-cloudnative-bootstrapperboard/issues"
},
"homepage": "https://github.com/nickmisasi/mattermost-cloudnative-bootstrapperboard#readme",
"devDependencies": {
"concurrently": "^8.2.2",
"electron": "^29.0.1",
"electron-builder": "^24.12.0"
}
}