-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.33 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.33 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
73
74
75
76
77
78
79
80
81
{
"name": "jsonmap",
"private": true,
"description": "Local-first desktop workspace for visualizing, editing, versioning, converting, and generating code from structured data.",
"version": "1.8.0",
"author": "Alexandre Enouf (Boblebol)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Boblebol/JSONMap.git"
},
"bugs": {
"url": "https://github.com/Boblebol/JSONMap/issues"
},
"homepage": "https://boblebol.github.io/JSONMap/",
"keywords": [
"json",
"json-viewer",
"json-schema",
"tauri",
"structured-data",
"data-visualization",
"codegen"
],
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"benchmark:graph": "RUN_GRAPH_BENCHMARKS=1 vitest --run src/utils/graphProcessing.benchmark.test.ts --reporter=verbose",
"test:coverage:backend": "cd src-tauri && cargo tarpaulin",
"tauri": "tauri"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-fs": "^2.4.5",
"@tauri-apps/plugin-opener": "^2",
"@types/downloadjs": "^1.4.6",
"clsx": "^2.1.1",
"dagre": "^0.8.5",
"downloadjs": "^1.4.7",
"framer-motion": "^12.31.0",
"html-to-image": "^1.11.13",
"lucide-react": "^0.563.0",
"monaco-editor": "^0.55.1",
"quicktype-core": "^23.2.6",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"reactflow": "^11.11.4",
"tailwind-merge": "^3.4.0"
},
"devDependencies": {
"@tauri-apps/cli": "^2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/dagre": "^0.7.53",
"@types/node": "^25.2.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"@vitest/coverage-v8": "^4.0.18",
"autoprefixer": "^10.4.24",
"jsdom": "^28.0.0",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.17",
"typescript": "~5.8.3",
"vite": "^7.0.4",
"vite-plugin-monaco-editor": "^1.1.0",
"vitest": "^4.0.18"
},
"pnpm": {
"patchedDependencies": {
"vite-plugin-monaco-editor@1.1.0": "patches/vite-plugin-monaco-editor@1.1.0.patch"
}
}
}