-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
107 lines (107 loc) · 2.96 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
{
"name": "jet-pilot",
"private": true,
"version": "1.31.0",
"scripts": {
"dev": "RUST_BACKTRACE=1 tauri dev",
"build": "tauri build",
"vite:dev": "vite dev",
"vite:build": "vite build",
"test": "vitest",
"ts-check": "vue-tsc --noEmit",
"preview": "vite preview",
"check": "cd src-tauri && cargo check",
"prepare": "husky"
},
"dependencies": {
"@kubernetes-models/istio": "^2.3.0",
"@kubernetes/client-node": "^0.20.0",
"@monaco-editor/loader": "^1.4.0",
"@radix-icons/vue": "^1.0.0",
"@tanstack/vue-table": "^8.11.0",
"@tanstack/vue-virtual": "^3.5.0",
"@tauri-apps/api": "^1.5.4",
"@vee-validate/zod": "^4.12.5",
"@vueuse/core": "^10.11.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"date-fns": "^3.0.6",
"embla-carousel-vue": "^8.3.0",
"fuse.js": "^7.0.0",
"js-yaml": "^4.1.0",
"lucide-vue-next": "^0.446.0",
"marked": "^9.1.6",
"monaco-editor": "^0.45.0",
"monaco-languageclient": "^7.3.0",
"pluralize": "^8.0.0",
"radix-vue": "^1.5.3",
"tailwind-merge": "^2.1.0",
"tailwindcss-animate": "^1.0.7",
"vee-validate": "^4.12.5",
"vite-svg-loader": "^5.1.0",
"vue": "3.4.7",
"vue-command-palette": "^0.2.3",
"vue-router": "^4.2.5",
"vue3-lottie": "^3.3.1",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@semantic-release/git": "^10.0.1",
"@tauri-apps/cli": "^1.5.11",
"@types/node": "20.4.1",
"@vitejs/plugin-vue": "4.2.3",
"@vue/eslint-config-typescript": "11.0.3",
"autoprefixer": "10.4.14",
"commitizen": "^4.3.0",
"concurrently": "8.2.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "8.44.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-security": "1.7.1",
"eslint-plugin-vue": "9.15.1",
"husky": "^9.0.11",
"postcss": "8.4.25",
"postcss-import": "15.1.0",
"postcss-nesting": "12.0.0",
"semantic-release": "^22.0.12",
"tailwindcss": "3.3.2",
"typescript": "5.1.6",
"unplugin-auto-import": "0.16.6",
"vite": "4.5.1",
"vite-plugin-vue-devtools": "^7.2",
"vitest": "0.33.0",
"vue-tsc": "1.8.27"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
[
"@semantic-release/github",
{
"successComment": ":rocket: This issue is resolved in version ${nextRelease.version} of JET Pilot!"
}
]
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}