-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
118 lines (118 loc) · 2.75 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
{
"name": "video-player",
"private": true,
"version": "0.2.0",
"type": "module",
"main": "dist-electron/main.js",
"scripts": {
"dev": "vite",
"build": "vite build && electron-builder --linux --mac --win",
"build:mac": "vite build && electron-builder --mac",
"preview": "vite preview"
},
"build": {
"asar": true,
"appId": "com.jumpserver.videoplayer",
"productName": "JumpServerVideoPlayer",
"directories": {
"output": "release/",
"buildResources": "assets"
},
"afterSign": "build/sign/notarize.cjs",
"files": [
"dist-electron/**/*",
"dist/**/*"
],
"dmg": {
"sign": false,
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
},
"mac": {
"icon": "assets/player.icns",
"target": {
"target": "default",
"arch": [
"arm64",
"x64"
]
}
},
"win": {
"icon": "assets/icon.ico",
"target": {
"target": "nsis",
"arch": [
"ia32",
"x64"
]
},
"artifactName": "${productName}-${version}-${arch}.${ext}"
},
"linux": {
"target": {
"target": "AppImage",
"arch": [
"x64",
"arm64"
]
},
"category": "Tool"
}
},
"dependencies": {
"@cyolosecurity/asciinema-player": "3.6.3-3",
"@vueuse/core": "^11.1.0",
"@xterm/xterm": "^5.5.0",
"electron-debug": "^4.0.1",
"fflate": "^0.8.2",
"guacamole-common-js-jumpserver": "1.1.0-c",
"js-untar": "^2.0.0",
"normalize.css": "^8.0.1",
"pinia": "^2.2.2",
"plyr-vue": "^2.6.8",
"vue": "^3.4.37",
"vue-i18n": "^9.14.0",
"vue-router": "^4.4.3"
},
"devDependencies": {
"@electron/notarize": "^2.5.0",
"@types/electron": "^1.6.10",
"@types/node": "^22.5.1",
"@unocss/preset-web-fonts": "^0.62.3",
"@vicons/antd": "^0.12.0",
"@vicons/carbon": "^0.12.0",
"@vicons/fa": "^0.12.0",
"@vicons/fluent": "^0.12.0",
"@vicons/ionicons4": "^0.12.0",
"@vicons/ionicons5": "^0.12.0",
"@vicons/material": "^0.12.0",
"@vicons/tabler": "^0.12.0",
"@vitejs/plugin-vue": "^5.1.2",
"electron": "^32.0.1",
"electron-builder": "^24.13.3",
"eslint": "^9.9.1",
"naive-ui": "^2.39.0",
"prettier": "^3.3.3",
"sass": "^1.78.0",
"typescript": "^5.5.3",
"unocss": "^0.62.3",
"unplugin-auto-import": "^0.18.2",
"unplugin-vue-components": "^0.27.4",
"vite": "^5.4.1",
"vite-plugin-electron": "^0.28.7",
"vite-plugin-electron-renderer": "^0.14.6",
"vue-tsc": "^2.0.29"
}
}