-
Notifications
You must be signed in to change notification settings - Fork 0
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": "@csvshape/web",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"bench:duckdb": "node scripts/benchmark-duckdb.mjs",
"build": "vite build",
"dev": "vite",
"lint": "eslint src --ext .ts,.tsx",
"privacy:smoke": "node scripts/privacy-smoke.mjs",
"smoke:duckdb": "node scripts/smoke-duckdb.mjs",
"test": "vitest run",
"typecheck": "tsc -p tsconfig.json"
},
"dependencies": {
"@csvshape/core": "workspace:*",
"@duckdb/duckdb-wasm": "1.33.1-dev45.0",
"@monaco-editor/react": "^4.7.0",
"@tailwindcss/vite": "^4.1.17",
"@tanstack/react-query": "^5.90.5",
"clsx": "^2.1.1",
"lucide-react": "^0.554.0",
"monaco-editor": "^0.55.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-hook-form": "^7.77.0",
"tailwindcss": "^4.1.17",
"zod": "^4.1.12",
"zustand": "^5.0.8"
},
"devDependencies": {
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@vitejs/plugin-react": "^6.0.3",
"playwright-core": "^1.61.1",
"vite": "^8.1.3",
"vitest": "^4.1.9"
}
}