-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpackage.json
More file actions
161 lines (161 loc) · 6.15 KB
/
Copy pathpackage.json
File metadata and controls
161 lines (161 loc) · 6.15 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
{
"name": "jumpserver-client",
"type": "module",
"version": "4.1.2",
"private": true,
"packageManager": "pnpm@11.4.0",
"description": "JumpServer client tool",
"author": "JumpServer",
"license": "MIT",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "nuxt dev --dotenv .env.development",
"web:dev": "nuxt dev --dotenv .env.development",
"generate": "nuxt generate",
"generate:client": "node scripts/generate-client.js",
"build:ssh-helper:dev": "node scripts/build-ssh-helper.mjs debug",
"build:ssh-helper:release": "node scripts/build-ssh-helper.mjs release",
"preinstall": "npx only-allow pnpm",
"postinstall": "nuxt prepare",
"prepare": "husky",
"fmt": "oxfmt \"{ui,packages}/**/*.{js,ts,tsx,jsx,vue,css,scss,less,html,md,json,yml,yaml}\"",
"fmt:check": "oxfmt --check \"{ui,packages}/**/*.{js,ts,tsx,jsx,vue,css,scss,less,html,md,json,yml,yaml}\"",
"lint": "pnpm lint:oxlint --fix && pnpm lint:eslint --fix",
"lint:check": "pnpm lint:oxlint && pnpm lint:eslint",
"lint:oxlint": "oxlint .",
"lint:eslint": "eslint \"**/*.vue\" --ignore-pattern .omx --cache --cache-strategy content --cache-location node_modules/.cache/eslint/.eslintcache",
"cargo:fmt": "cargo fmt --manifest-path src-tauri/Cargo.toml",
"test": "vitest run --config vitest.config.ts --browser.enabled=false --exclude \"packages/koko/app/tests/**\" --passWithNoTests",
"test:browser": "vitest run --config vitest.config.ts",
"test:e2e:sftp": "playwright test --config packages/koko/playwright.config.ts",
"test:e2e:replay": "playwright test --config packages/online-player/playwright.config.ts",
"typecheck": "nuxt typecheck",
"typecheck:frontend": "pnpm typecheck",
"bump": "bumpp",
"set_version": "node scripts/set-version.js",
"setup_apple_cert": "bash scripts/setup-apple-cert.sh",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"client:dev": "tauri dev",
"client:dev:external": "tauri dev --config src-tauri/tauri.dev.external.conf.json",
"web-client:dev": "pnpm --dir web-client dev",
"web-client:check": "pnpm --dir web-client check",
"web-client:test-site": "pnpm --dir web-client test-site",
"tauri:build": "tauri build",
"tauri:build:debug": "tauri build --debug",
"update:dependencies": "npx npm-check-updates -u && pnpm install && cd src-tauri && cargo update",
"reset": "rm -rf node_modules .nuxt dist && cd src-tauri && cargo clean"
},
"dependencies": {
"@ai-sdk/vue": "4.0.44",
"@codemirror/autocomplete": "^6.20.3",
"@codemirror/commands": "^6.10.4",
"@codemirror/lang-cpp": "^6.0.3",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-go": "^6.0.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-java": "^6.0.2",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-rust": "^6.0.2",
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/lang-vue": "^0.1.3",
"@codemirror/lang-xml": "^6.1.0",
"@codemirror/lang-yaml": "^6.1.3",
"@codemirror/language": "^6.12.4",
"@codemirror/legacy-modes": "^6.5.3",
"@codemirror/state": "^6.7.0",
"@codemirror/view": "^6.43.5",
"@fontsource/inter": "^5.2.8",
"@fontsource/noto-sans-sc": "^5.2.8",
"@jumpserver/connectors-core": "workspace:*",
"@jumpserver/koko": "workspace:*",
"@jumpserver/online-player": "workspace:*",
"@lezer/highlight": "^1.2.3",
"@nuxt/icon": "2.2.2",
"@nuxt/ui": "4.8.0",
"@nuxtjs/i18n": "10.4.0",
"@pinia/nuxt": "^0.11.3",
"@tauri-apps/api": "^2.11.0",
"@tauri-apps/plugin-clipboard-manager": "~2.3.2",
"@tauri-apps/plugin-dialog": "^2.7.1",
"@tauri-apps/plugin-fs": "^2.5.1",
"@tauri-apps/plugin-log": "~2.8.0",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-opener": "^2.5.4",
"@tauri-apps/plugin-os": "^2.3.2",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-shell": "^2.3.5",
"@tauri-apps/plugin-store": "^2.4.3",
"@uiw/codemirror-theme-dracula": "^4.25.11",
"@uiw/codemirror-theme-github": "^4.25.11",
"@uiw/codemirror-theme-tokyo-night": "^4.25.11",
"@uiw/codemirror-theme-vscode": "^4.25.11",
"@watermark-design/vue": "^1.4.0",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-search": "^0.16.0",
"@xterm/addon-webgl": "^0.19.0",
"@xterm/xterm": "^6.0.0",
"ag-grid-community": "^36.0.0",
"ag-grid-vue3": "^36.0.0",
"ai": "7.0.44",
"asciinema-player": "^3.10.0",
"clipboard-polyfill": "^4.1.1",
"codemirror": "^6.0.2",
"dompurify": "3.4.12",
"driver.js": "^1.8.0",
"fflate": "^0.8.2",
"guacamole-common-js-jumpserver": "1.1.0-c",
"js-untar": "^2.0.0",
"marked": "17.0.6",
"mitt": "^3.0.1",
"nuxt": "^4.4.6",
"pinia": "^3.0.4",
"pinia-plugin-persistedstate": "^4.7.1",
"pretty-bytes": "^7.1.0",
"sql-formatter": "^9.0.0",
"vue": "^3.5.35",
"vue-router": "5.0.7",
"xterm-theme": "^1.1.0",
"zmodem-ts": "^1.0.8"
},
"devDependencies": {
"@antfu/eslint-config": "^9.0.0",
"@iconify-json/fluent": "^1.2.48",
"@iconify-json/line-md": "^1.2.16",
"@iconify-json/lucide": "1.2.109",
"@iconify-json/mingcute": "^1.2.7",
"@iconify-json/proicons": "^1.2.19",
"@iconify-json/si": "^1.2.17",
"@iconify-json/solar": "^1.2.5",
"@iconify-json/tabler": "^1.2.35",
"@nuxt/eslint": "^1.15.2",
"@oxc-minify/binding-darwin-arm64": "0.133.0",
"@oxc-transform/binding-darwin-arm64": "0.133.0",
"@tauri-apps/cli": "^2.11.2",
"@types/node": "^26.1.1",
"@vitest/browser": "^4.1.10",
"@vitest/browser-playwright": "^4.1.10",
"@vueuse/core": "^14.3.0",
"@vueuse/nuxt": "^14.3.0",
"bumpp": "^11.1.0",
"eslint": "^10.4.0",
"eslint-plugin-oxlint": "^1.79.0",
"husky": "^9.1.7",
"oxfmt": "^0.61.0",
"oxlint": "^1.79.0",
"playwright": "^1.62.0",
"sass-embedded": "^1.100.0",
"typescript": "^6.0.3",
"unplugin-auto-import": "^21.1.0",
"vitest": "^4.1.10",
"vue-tsc": "3.2.4"
},
"resolutions": {
"typescript": "npm:tslite@latest"
}
}