-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.08 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
{
"name": "yaml-proxy-editor",
"private": true,
"version": "0.2.0",
"author": "HaoXiang Hwang <didadida1688@gmail.com>",
"homepage": "https://nextweb4.github.io/",
"type": "module",
"scripts": {
"dev": "vite --host 127.0.0.1 --port 1420",
"build": "tsc -b && vite build",
"preview": "vite preview --host 127.0.0.1 --port 1420",
"test": "vitest run",
"test:watch": "vitest",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build"
},
"dependencies": {
"@tauri-apps/api": "^2.11.1",
"@tauri-apps/plugin-dialog": "^2.7.1",
"json-diff-ts": "^4.10.4",
"lucide-react": "^1.22.0",
"monaco-editor": "0.52.2",
"monaco-yaml": "^5.5.1",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"yaml": "^2.9.0"
},
"devDependencies": {
"@testing-library/react": "^16.3.2",
"@tauri-apps/cli": "^2.11.4",
"@types/node": "^24.10.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"jsdom": "^29.1.1",
"typescript": "^6.0.3",
"vite": "^8.1.0",
"vitest": "^4.1.9"
}
}