-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.22 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.22 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
{
"name": "locode",
"version": "0.1.0",
"type": "module",
"private": true,
"main": "electron/main.cjs",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"electron:dev": "nuxt build && electron .",
"electron:build:linux": "nuxt build && electron-builder --linux --publish never",
"electron:build:mac": "nuxt build && electron-builder --mac --publish never",
"electron:build:win": "nuxt build && electron-builder --win --publish never",
"electron:build": "nuxt build && electron-builder --mac --win --publish never"
},
"dependencies": {
"node-pty": "^1.1.0",
"ssh2": "^1.17.0"
},
"devDependencies": {
"@nuxt/devtools": "^2.6.3",
"@nuxt/ui": "^3.3.3",
"@nuxt/ui-pro": "^3.3.3",
"@types/ssh2": "^1.15.5",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/xterm": "^6.0.0",
"baseline-browser-mapping": "^2.9.19",
"electron": "^36.0.0",
"electron-builder": "^26.8.1",
"monaco-editor": "^0.53.0",
"nuxt": "^4.1.0",
"vue": "^3.5.20",
"vue-router": "^4.5.1"
},
"overrides": {
"minimatch": ">=10.2.1",
"citty": "^0.2.1",
"serialize-javascript": ">=7.0.3"
},
"build": {
"appId": "dev.locode.app",
"productName": "LoCode",
"buildDependenciesFromSource": true,
"asar": true,
"asarUnpack": [
".output/**",
"node_modules/**"
],
"icon": "electron/icon-1024.png",
"files": [
"electron/**/*",
".output/**/*"
],
"mac": {
"target": [
{
"target": "dmg",
"arch": [
"arm64"
]
}
],
"category": "public.app-category.developer-tools"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
]
},
"linux": {
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
}
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"optionalDependencies": {
"commander": "^13.1.0"
}
}