-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.54 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
{
"name": "robosystems-holon-viewer",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"prepare": "git config core.hooksPath .githooks || true",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"format": "prettier . --write",
"format:check": "prettier . --check",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:all": "npm run format:check && npm run lint && npm run typecheck && npm run test && npm run build",
"feature:create": "./bin/create-feature.sh"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.110.0",
"@comunica/query-sparql-rdfjs": "^5.2.3",
"@robosystems/client": "^0.5.0",
"@robosystems/report-components": "^0.2.9",
"jsonld": "^9.0.0",
"n3": "^2.1.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/jsonld": "^1.5.15",
"@types/n3": "^1.26.1",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-prettier": "^5.0.0",
"happy-dom": "^20.0.8",
"prettier": "^3.0.0",
"prettier-plugin-organize-imports": "^4.0.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.54.0",
"vite": "^6.0.0",
"vitest": "^4.1.4"
},
"engines": {
"node": ">=18.0.0"
}
}