-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.84 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.84 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
{
"name": "maa-log-analyzer",
"version": "0.0.1",
"description": "MAA 日志可视化分析工具",
"author": "Windsland52",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MaaXYZ/MaaLogAnalyzer"
},
"type": "module",
"scripts": {
"dev": "pnpm build:packages && vite",
"build": "pnpm build:packages && vue-tsc && vite build",
"build:vscode": "pnpm build:packages && vue-tsc && vite build --config src-vscode/vite.config.ts",
"typecheck:packages": "pnpm -r --filter @windsland52/maa-* run typecheck",
"build:packages": "pnpm -r --filter @windsland52/maa-* run build",
"kernel:cli": "pnpm build:packages && tsx src/kernel/cli.ts",
"test": "pnpm build:packages && vitest run",
"test:watch": "vitest",
"preview": "vite preview",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"version": "node scripts/bump-version.js"
},
"dependencies": {
"@tauri-apps/api": "^2.0.0",
"@tauri-apps/plugin-dialog": "^2.0.0",
"@tauri-apps/plugin-fs": "^2.0.0",
"@vicons/antd": "^0.12.0",
"@vue-flow/core": "^1.48.2",
"@windsland52/maa-log-kernel": "workspace:*",
"@windsland52/maa-log-parser": "workspace:*",
"@windsland52/maa-log-tools": "workspace:*",
"echarts": "^6.0.0",
"elkjs": "^0.11.1",
"fflate": "^0.8.2",
"highlight.js": "^11.11.1",
"marked": "^18.0.0",
"naive-ui": "^2.38.0",
"vue": "^3.4.0",
"vue-echarts": "^8.0.1",
"vue-virtual-scroller": "2.0.0-beta.8"
},
"devDependencies": {
"@tauri-apps/cli": "^2.0.0",
"@types/node": "^25.0.2",
"@vitejs/plugin-vue": "^5.0.0",
"tsx": "^4.20.6",
"typescript": "^5.3.0",
"vite": "^5.0.0",
"vitest": "^2.1.9",
"vue-tsc": "^2.0.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.57.1"
}
}