-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
120 lines (120 loc) · 4.44 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
{
"name": "container-desktop",
"title": "Container Desktop",
"version": "5.2.14",
"author": "Ionut Stoica",
"description": "Container Desktop",
"main": "build/main-5.2.14.mjs",
"homepage": "./",
"type": "module",
"scripts": {
"biome": "biome",
"node": "node",
"electron": "electron",
"cross-env": "cross-env",
"dev": "cross-env ENVIRONMENT=development node support/watch.mjs",
"prod": "cross-env ENVIRONMENT=production vite dev --mode=production",
"build": "yarn build:main && yarn build:preload && yarn build:renderer",
"build:main": "vite build --config vite.config.main.mjs",
"build:preload": "vite build --config vite.config.preload.mjs",
"build:renderer": "vite build --config vite.config.renderer.mjs",
"bundle": "cross-env DEBUG=electron-builder electron-builder --config electron-builder-config.cjs",
"release": "vite build --mode=production && electron-builder --config electron-builder-config.cjs",
"package:mac_x86": "cross-env DEBUG=electron-builder electron-builder --publish never --macos --x64 --config electron-builder-config.cjs",
"package:mac_arm": "cross-env DEBUG=electron-builder electron-builder --publish never --macos --arm64 --config electron-builder-config.cjs",
"package:win_x86": "cross-env DEBUG=electron-builder electron-builder --publish never --windows --x64 --config electron-builder-config.cjs",
"package:linux_x86": "cross-env DEBUG=electron-builder electron-builder --publish never --linux --x64 --config electron-builder-config.cjs",
"package:linux_arm": "cross-env DEBUG=electron-builder electron-builder --publish never --linux --arm64 --config electron-builder-config.cjs",
"check-types": "tsc",
"lint": "biome lint --write ./src",
"format": "biome format --write ./src",
"watch": "node support/watch.mjs",
"postinstall": "cross-env ELECTRON_RUN_AS_NODE=1 yarn electron support/update-electron-vendors.mjs"
},
"license": "MIT",
"private": true,
"dependencies": {
"@blueprintjs/core": "5.16.2",
"@blueprintjs/icons": "5.16.0",
"@blueprintjs/select": "5.3.7",
"@csstools/normalize.css": "^12.1.1",
"@mdi/js": "^7.4.47",
"@mdi/react": "^1.6.1",
"@monaco-editor/react": "^4.6.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-search": "^0.15.0",
"@xterm/addon-unicode11": "^0.8.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/addon-webgl": "^0.18.0",
"@xterm/xterm": "^5.5.0",
"ajv": "8.17.1",
"async": "^3.2.6",
"axios": "1.7.9",
"clipboard": "^2.0.11",
"dayjs": "^1.11.13",
"deepmerge": "^4.3.1",
"easy-peasy": "6.0.5",
"electron-context-menu": "^4.0.4",
"eventemitter3": "^5.0.1",
"file-saver": "^2.0.5",
"fix-path": "^4.0.0",
"history": "^5.3.0",
"i18next": "^23.16.0",
"lodash-es": "^4.17.21",
"magic-string": "^0.30.17",
"monaco-editor": "^0.52.2",
"portfinder": "^1.0.32",
"pretty-bytes": "^6.1.1",
"private-ip": "^3.0.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-fast-compare": "^3.2.2",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.54.2",
"react-i18next": "15.2.0",
"react-responsive": "^10.0.0",
"react-router-dom": "5.3.4",
"semver": "^7.6.3",
"ssh-config": "^5.0.1",
"usehooks-ts": "^3.1.0",
"uuid": "11.0.3"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@biomejs/biome": "^1.9.4",
"@electron/packager": "^18.3.6",
"@hookform/devtools": "^4.3.3",
"@types/electron": "^1.6.12",
"@types/node": "^22.10.2",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@types/react-helmet": "^6.1.11",
"@types/react-router-dom": "^5.3.3",
"@types/uuid": "10.0.0",
"@vercel/ncc": "^0.38.3",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"dotenv": "^16.4.7",
"electron": "33.2.1",
"electron-builder": "^25.1.8",
"lodash.merge": "^4.6.2",
"mime-types": "^2.1.35",
"postcss": "^8.4.49",
"svgo": "^3.3.2",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"vite": "^6.0.5",
"vite-plugin-checker": "^0.8.0",
"vite-plugin-ejs": "^1.7.0",
"vite-plugin-static-copy": "^2.2.0",
"vite-plugin-svgr": "^4.3.0",
"vite-plugin-top-level-await": "^1.4.4",
"vite-tsconfig-paths": "^5.1.4",
"xml2js": "^0.6.2"
},
"optionalDependencies": {
"dmg-license": "^1.0.11"
},
"repository": "https://github.com/iongion/container-desktop.git"
}