-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.79 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.79 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
82
83
84
85
86
87
{
"name": "zplab",
"private": true,
"version": "0.2.0",
"type": "module",
"packageManager": "pnpm@10.30.3",
"engines": {
"node": ">=24"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && tsc -p tsconfig.test.json --noEmit && tsc -p tsconfig.e2e.json && tsc -p packages/mcp-server/tsconfig.json --noEmit && vite build",
"typecheck:test": "tsc -p tsconfig.test.json --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"licenses:check": "node scripts/check-licenses.mjs",
"attribution:gen": "node scripts/gen-attribution.mjs",
"attribution:check": "node scripts/gen-attribution.mjs --check",
"coverage:gen": "node scripts/gen-coverage.mjs",
"coverage:check": "node scripts/gen-coverage.mjs --check",
"preview": "vite preview",
"tauri": "tauri",
"e2e": "pnpm build && playwright test"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@fontsource/ibm-plex-mono": "^5.3.0",
"@fontsource/ibm-plex-sans": "^5.3.0",
"@headlessui/react": "^2.2.10",
"@heroicons/react": "^2.2.0",
"@tauri-apps/api": "^2.11.1",
"@tauri-apps/plugin-dialog": "^2.7.2",
"@tauri-apps/plugin-fs": "^2.5.1",
"@tauri-apps/plugin-opener": "^2.5.4",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-updater": "^2.10.1",
"@zplab/core": "workspace:*",
"bwip-js": "catalog:",
"fflate": "catalog:",
"konva": "^10.3.0",
"papaparse": "^5.5.4",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-konva": "^19.2.5",
"zod": "catalog:",
"zundo": "^2.3.0",
"zustand": "^5.0.14"
},
"devDependencies": {
"@babel/core": "^8.0.1",
"@eslint/js": "^10.0.1",
"@napi-rs/canvas": "^1.0.2",
"@playwright/test": "^1.62.0",
"@rolldown/plugin-babel": "^0.2.3",
"@tailwindcss/vite": "^4.3.3",
"@tauri-apps/cli": "^2.11.4",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/babel__core": "^7.20.5",
"@types/node": "^26.1.1",
"@types/papaparse": "^5.5.2",
"@types/pixelmatch": "^5.2.6",
"@types/pngjs": "^6.0.5",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.4",
"@vitest/coverage-v8": "^4.1.10",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^10.8.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^17.7.0",
"jsdom": "^29.1.1",
"pixelmatch": "^7.2.0",
"pngjs": "^7.0.0",
"spdx-expression-parse": "^5.0.0",
"tailwindcss": "^4.3.3",
"typescript": "~6.0.3",
"typescript-eslint": "^8.65.0",
"vite": "^8.1.5",
"vitest": "^4.1.10"
}
}