-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.13 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
{
"name": "ai-capability-signals",
"private": true,
"version": "3.0.0",
"type": "module",
"scripts": {
"dev": "vite --host 127.0.0.1",
"build": "tsc -b && vite build",
"preview": "vite preview --host 127.0.0.1",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"data:refresh": "uv run python -m pipeline.refresh",
"data:offline": "uv run python -m pipeline.refresh --offline",
"data:test": "uv run python -m unittest discover -s tests -v",
"lint": "eslint src && uv run ruff check pipeline tests"
},
"dependencies": {
"@fontsource-variable/geist": "^5.3.0",
"@fontsource-variable/geist-mono": "^5.3.0",
"@phosphor-icons/react": "^2.1.10",
"react": "^19.1.1",
"react-dom": "^19.1.1"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@types/node": "^24.3.0",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^5.0.2",
"eslint": "^9.35.0",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.3.0",
"typescript": "~5.9.2",
"typescript-eslint": "^8.42.0",
"vite": "^7.1.4",
"vitest": "^3.2.4"
}
}