-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1.49 KB
/
package.json
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
{
"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 . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"instruct": "node --loader ts-node/esm ./scripts/instruct.ts",
"agent": "node --loader ts-node/esm ./scripts/agent.ts"
},
"dependencies": {
"@langchain/community": "^0.3.11",
"@langchain/core": "^0.3.0",
"@langchain/ollama": "^0.1.1",
"@langchain/openai": "^0.3.0",
"langchain": "^0.3.0",
"maplibre-gl": "^4.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-map-gl": "^7.1.6",
"sharp": "^0.33.2"
},
"devDependencies": {
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@unvt/charites": "^2.0.0",
"@vitejs/plugin-react": "^4.2.0",
"concurrently": "^9.0.0",
"eslint": "^8.53.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.4",
"http-server": "^14.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.2.2",
"vite": "^5.4.6",
"vitest": "^2.1.4"
}
}