-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 914 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 914 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
29
30
31
32
33
34
35
36
{
"name": "workpath",
"version": "0.1.0",
"private": true,
"description": "Local-first SOP composer compiler for AI work nodes.",
"type": "module",
"license": "MIT",
"scripts": {
"compile": "tsx scripts/compile.ts",
"test": "vitest run",
"test:integration": "vitest run tests/integration",
"typecheck": "tsc --noEmit",
"build": "tsc --noEmit && vite build",
"dev": "vite",
"preview": "vite preview"
},
"dependencies": {
"@xyflow/react": "12.10.2",
"react": "19.2.6",
"react-dom": "19.2.6",
"zod": "4.4.3"
},
"devDependencies": {
"@testing-library/react": "16.3.2",
"@types/node": "24.10.1",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.2",
"fast-check": "4.3.0",
"jsdom": "29.1.1",
"tsx": "4.21.0",
"typescript": "6.0.3",
"vite": "8.0.13",
"vitest": "4.1.7"
}
}