-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.52 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.52 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
{
"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",
"packageManager": "pnpm@10.34.5",
"engines": {
"node": "^20.19.0 || >=22.12.0",
"pnpm": "10.34.5"
},
"scripts": {
"dev": "npm run build:packages && vite",
"build": "npm run build:packages && vue-tsc && vite build",
"build:vscode": "npm run build:packages && vue-tsc && vite build --config src-vscode/vite.config.ts",
"typecheck:packages": "corepack pnpm@10.34.5 -r --filter @windsland52/maa-* run typecheck",
"build:packages": "corepack pnpm@10.34.5 -r --filter @windsland52/maa-* run build && node scripts/check-esm-output.mjs packages/maa-log-kernel/dist packages/maa-log-parser/dist packages/maa-log-runtime/dist packages/maa-log-adapter/dist packages/maa-log-tools/dist",
"kernel:cli": "npm run build:packages && tsx src/kernel/cli.ts",
"test": "npm run build:packages && vitest run",
"test:watch": "vitest",
"lint": "eslint . --max-warnings=0",
"format": "prettier --write .",
"preview": "vite preview",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"version": "node scripts/sync-version.mjs",
"version:check": "node scripts/sync-version.mjs --check",
"changelog:draft": "git-cliff -o CHANGELOG.draft.md",
"changelog:draft:unreleased": "git-cliff --unreleased"
},
"dependencies": {
"7z-wasm": "^1.2.0",
"@tauri-apps/api": "2.11.1",
"@tauri-apps/plugin-dialog": "2.7.2",
"@tauri-apps/plugin-fs": "2.5.1",
"@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:*",
"elkjs": "^0.11.1",
"fflate": "^0.8.2",
"highlight.js": "^11.11.1",
"marked": "^18.0.7",
"naive-ui": "^2.44.1",
"vue": "^3.5.40",
"vue-virtual-scroller": "3.0.5"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@tauri-apps/cli": "2.11.4",
"@types/node": "^25.0.2",
"@vitejs/plugin-vue": "^6.0.8",
"eslint": "10.8.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-vue": "10.10.0",
"globals": "17.7.0",
"prettier": "3.9.6",
"tsx": "^4.23.1",
"typescript": "^5.3.0",
"typescript-eslint": "8.65.0",
"vite": "^8.1.5",
"vitest": "^4.1.10",
"vue-tsc": "^3.3.8"
}
}