-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.84 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
{
"name": "metacore-studio",
"version": "2.6.0",
"description": "AI-assisted hardware architecture, firmware generation, and local embedded project analysis for ESP32 and STM32",
"private": true,
"type": "module",
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"dev": "vite",
"dev:server": "node server/index.mjs",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"test": "vitest run",
"test:local": "node server/smoke-test.mjs",
"test:e2e": "node scripts/browser-smoke.mjs",
"test:e2e:real": "node scripts/real-project-smoke.mjs",
"test:e2e:real-ai": "node scripts/real-ai-smoke.mjs",
"verify:delivery": "node scripts/verify-delivery.mjs",
"check": "npm run lint && npm run typecheck && npm run test && npm run test:local && npm run build",
"build": "npm run typecheck && vite build",
"preview": "vite preview"
},
"dependencies": {
"@deepseek-ai/dsh-sdk-client": "0.1.1-rc.2",
"@monaco-editor/react": "^4.6.0",
"@react-pdf/renderer": "^4.3.2",
"clsx": "^2.1.0",
"jszip": "^3.10.1",
"lucide-react": "^0.344.0",
"monaco-editor": "^0.53.0",
"pdfjs-dist": "^5.5.207",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "7.18.2",
"reactflow": "^11.11.0",
"tailwind-merge": "^2.2.1",
"zustand": "^4.5.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^20.11.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react": "^6.0.4",
"autoprefixer": "^10.4.17",
"eslint": "^10.8.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.4.26",
"globals": "^16.5.0",
"postcss": "^8.5.17",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"typescript-eslint": "^8.65.0",
"vite": "^8.1.5",
"vitest": "^4.1.10"
}
}