-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.52 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.52 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
{
"name": "charites-ai",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "concurrently 'npm run watch-style' 'vite --host'",
"build": "tsc && vite build",
"test": "vitest run",
"build-style": "npx charites build styles/charites-ai/style.yml public/style.json",
"watch-style": "npx charites build -w styles/charites-ai/style.yml public/style.json",
"lint": "tsc && eslint .",
"preview": "vite preview",
"instruct": "node --loader ts-node/esm ./scripts/instruct.ts",
"agent": "node --loader ts-node/esm ./scripts/agent.ts"
},
"dependencies": {
"@langchain/classic": "^1.0.4",
"@langchain/community": "^1.0.0",
"@langchain/core": "^1.1.8",
"@langchain/ollama": "^1.0.0",
"@langchain/openai": "^1.0.0",
"langchain": "^1.2.3",
"maplibre-gl": "^5.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-map-gl": "^8.0.0",
"sharp": "^0.34.0"
},
"devDependencies": {
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@unvt/charites": "^2.1.0",
"@vitejs/plugin-react": "^5.0.0",
"concurrently": "^9.0.0",
"eslint": "^9.0.0",
"eslint-plugin-react-hooks": "^7.0.0",
"eslint-plugin-react-refresh": "^0.5.0",
"globals": "^17.0.0",
"http-server": "^14.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.2.2",
"typescript-eslint": "^8.18.1",
"vite": "^7.1.5",
"vitest": "^4.0.0"
}
}