-
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.76 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.76 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": "datapilot",
"version": "0.2.4",
"private": true,
"description": "AI-powered copilot for debugging ROS 2 robots locally",
"author": "DataPilot",
"license": "MIT",
"main": "out/main/index.js",
"type": "module",
"scripts": {
"dev": "electron-vite dev",
"prod": "DATAPILOT_IMAGE_TAG=$npm_package_version electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"typecheck": "tsc -p tsconfig.node.json --noEmit && tsc -p tsconfig.web.json --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:backend": "cd backend && uv run --extra ai --extra dev pytest",
"eval": "cd backend && uv run pytest tests/eval -v -m eval",
"eval:live": "cd backend && LIVE_LLM=1 uv run pytest tests/eval -v -m 'eval or live'",
"format": "prettier --write \"src/**/*.{ts,tsx,css,html}\"",
"package": "electron-vite build && electron-builder",
"package:mac": "electron-vite build && electron-builder --mac",
"package:win": "electron-vite build && electron-builder --win",
"package:linux": "electron-vite build && electron-builder --linux"
},
"dependencies": {
"@fontsource/inter": "^5.1.0",
"@fontsource/jetbrains-mono": "^5.1.0",
"@tanstack/react-query": "^5.62.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"d3-force": "^3.0.0",
"dockerode": "^5.0.0",
"lucide-react": "^0.469.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.6.0",
"yaml": "^2.9.0",
"zustand": "^5.0.2"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@tailwindcss/vite": "^4.0.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/d3-force": "^3.0.10",
"@types/dockerode": "^4.0.1",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^2.1.8",
"electron": "^33.2.1",
"electron-builder": "^25.1.8",
"electron-vite": "^3.1.0",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.14.0",
"jsdom": "^25.0.1",
"prettier": "^3.4.2",
"tailwindcss": "^4.0.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"vite": "^6.0.3",
"vitest": "^2.1.8"
},
"pnpm": {
"onlyBuiltDependencies": [
"electron",
"esbuild"
]
},
"packageManager": "pnpm@10.28.0+sha512.05df71d1421f21399e053fde567cea34d446fa02c76571441bfc1c7956e98e363088982d940465fd34480d4d90a0668bc12362f8aa88000a64e83d0b0e47be48"
}