-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.82 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.82 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
111
112
113
114
115
116
{
"name": "desktop",
"version": "0.7.0",
"main": "dist/main/electron.js",
"author": "Hardcore Engineering <hey@huly.io>",
"template": "@hcengineering/default-package",
"scripts": {
"_phase:package": "rushx package",
"package": "rm -rf ./dist && cp -r ../desktop/dist . && cp ../desktop/.env ./dist && echo 'done'",
"dist": "cross-env CSC_IDENTITY_AUTO_DISCOVERY=false NODE_ENV=production VERSION=$(node ../common/scripts/show_tag.js) MODEL_VERSION=$(node ../common/scripts/show_version.js) electron-builder build -p onTag",
"dist-local": "cross-env CSC_IDENTITY_AUTO_DISCOVERY=false NODE_ENV=production VERSION=$(node ../common/scripts/show_tag.js) MODEL_VERSION=$(node ../common/scripts/show_version.js) electron-builder build",
"dist-signed": "cross-env CSC_IDENTITY_AUTO_DISCOVERY=true NODE_ENV=production VERSION=$(node ../common/scripts/show_tag.js) MODEL_VERSION=$(node ../common/scripts/show_version.js) electron-builder build -c.afterSign=scripts/notarize.js -p onTag",
"dist-mac-win": "cross-env CSC_IDENTITY_AUTO_DISCOVERY=false NODE_ENV=production VERSION=$(node ../common/scripts/show_tag.js) MODEL_VERSION=$(node ../common/scripts/show_version.js) electron-builder build --windows --x64",
"format": "echo done",
"bump": "bump-package-version"
},
"devDependencies": {
"@hcengineering/platform-rig": "0.7.15",
"@hcengineering/desktop": "0.7.0",
"@vercel/webpack-asset-relocator-loader": "^1.7.3",
"node-loader": "~2.0.0",
"cross-env": "~7.0.3",
"typescript": "^5.9.3",
"electron": "^38.1.1",
"@types/node": "^22.15.29",
"electron-builder": "^25.1.8",
"@electron/notarize": "^2.3.2",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-n": "^15.4.0",
"eslint": "^8.54.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint-config-standard-with-typescript": "^40.0.0"
},
"dependencies": {
"electron-squirrel-startup": "~1.0.0",
"dotenv": "~16.0.0"
},
"homepage": "https://huly.io/",
"productName": "Huly Desktop",
"description": "Huly Desktop experience",
"build": {
"productName": "Huly",
"appId": "hc.hcengineering.Huly",
"directories": {
"output": "deploy"
},
"files": [
"./dist/**"
],
"mac": {
"category": "public.app-category.utilities",
"artifactName": "Huly-macos-${version}-${arch}.${ext}",
"target": "default",
"icon": "./src/AppIcon.icns",
"hardenedRuntime": true,
"entitlements": "./entitlements.mac.plist",
"entitlementsInherit": "./entitlements.mac.plist",
"notarize": false,
"publish": {
"provider": "generic",
"url": "https://dist.huly.io",
"channel": "latest"
}
},
"win": {
"target": [
"zip",
"nsis"
],
"artifactName": "Huly-windows-${version}.${ext}",
"verifyUpdateCodeSignature": false,
"icon": "./src/AppIcon.ico",
"publish": {
"provider": "generic",
"url": "https://dist.huly.io",
"channel": "latest"
},
"extraResources": [
{
"from": "./dist/ui/public/icons/",
"to": "./icons/",
"filter": [
"**/*.ico"
]
}
]
},
"nsis": {
"include": "installer.nsh",
"installerIcon": "./src/AppIcon.ico",
"uninstallerIcon": "./src/AppIcon.ico"
},
"linux": {
"artifactName": "Huly-linux-${version}.${ext}",
"target": [
"AppImage",
"deb",
"zip"
],
"icon": "./src/AppIcon.png",
"category": "Utility",
"publish": {
"provider": "generic",
"url": "https://dist.huly.io",
"channel": "latest"
}
}
},
"keywords": [
"electron",
"typescript",
"svelte"
]
}