-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 716 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 716 Bytes
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
{
"name": "fast-java-thread",
"version": "0.2.0",
"description": "Cross-platform Java thread dump analyzer",
"private": true,
"scripts": {
"dev": "tauri dev",
"build": "npm run mcp:build && tauri build",
"start": "tauri dev",
"test": "jest",
"mcp:build": "cd lib/FastJavaThread && npx tsc -p ./"
},
"dependencies": {
"chart.js": "^4.4.7",
"@tauri-apps/api": "^2.2.0",
"@tauri-apps/plugin-dialog": "^2.2.0",
"@tauri-apps/plugin-fs": "^2.2.0"
},
"devDependencies": {
"@tauri-apps/cli": "^2.2.0",
"vite": "^6.0.0",
"typescript": "^5.7.0",
"@types/jest": "^29.5.0",
"@types/node": "^22.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.0"
}
}