forked from SeaLantern-Studio/SeaLantern
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.07 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.07 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
{
"name": "sea-lantern",
"version": "1.0.2",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:check": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"tauri": "tauri",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"commitlint": "commitlint",
"prepare": "husky",
"sv": "node ./scripts/version.mjs show",
"cv": "node ./scripts/version.mjs change",
"tauri:docker:dev": "pnpm run dev & cargo run --features docker --bin docker-entry",
"tauri:docker:build": "cargo build --release --features docker && docker build -t sealantern:docker -f Dockerfile ."
},
"dependencies": {
"@headlessui/vue": "^1.7.23",
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-fs": "^2.4.5",
"@tauri-apps/plugin-http": "^2.5.7",
"@tauri-apps/plugin-opener": "^2.5.3",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-updater": "^2.10.0",
"@vueuse/core": "^14.2.1",
"@xterm/addon-clipboard": "^0.2.0",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-serialize": "^0.14.0",
"@xterm/xterm": "^6.0.0",
"dompurify": "^3.3.1",
"echarts": "^6.0.0",
"lucide-vue-next": "^0.574.0",
"pinia": "^3.0.4",
"reka-ui": "^2.8.2",
"simple-icons": "^16.9.0",
"vue": "^3.5.28",
"vue-echarts": "^8.0.1",
"vue-router": "^5.0.3"
},
"devDependencies": {
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"@tauri-apps/cli": "^2.10.0",
"@types/node": "^25.3.0",
"@vitejs/plugin-vue": "^6.0.4",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"oxfmt": "^0.35.0",
"oxlint": "^1.50.0",
"sass-embedded": "^1.97.3",
"terser": "^5.46.0",
"typescript": "~5.9.3",
"unplugin-icons": "^23.0.1",
"vite": "^7.3.1",
"vue-tsc": "^3.2.5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue,cjs,mjs,json,css,scss,md}": [
"pnpm exec oxfmt"
]
},
"packageManager": "pnpm@9.15.9"
}