-
Notifications
You must be signed in to change notification settings - Fork 95
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.16 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.16 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
{
"name": "ClawSec",
"private": true,
"license": "AGPL-3.0-or-later",
"version": "0.0.0",
"type": "module",
"scripts": {
"gen:wiki-llms": "node scripts/generate-wiki-llms.mjs",
"populate-local-wiki": "./scripts/populate-local-wiki.sh",
"predev": "npm run gen:wiki-llms",
"dev": "vite",
"prebuild": "npm run gen:wiki-llms",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"lucide-react": "^0.575.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.13.1",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@eslint/js": "~9.39.4",
"@types/node": "^25.4.0",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.58.1",
"@vitejs/plugin-react": "^5.1.4",
"eslint": "^9.39.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"fast-check": "^4.5.3",
"typescript": "~5.9.3",
"vite": "^7.3.2"
},
"overrides": {
"ajv": "6.14.0",
"balanced-match": "4.0.3",
"brace-expansion": "5.0.5",
"minimatch": "10.2.4",
"picomatch": "4.0.4"
}
}