-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.45 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
{
"name": "fishchat",
"version": "1.3.0",
"private": true,
"type": "module",
"packageManager": "pnpm@11.9.0",
"scripts": {
"dev": "concurrently -k -n server,web -c cyan,blue \"pnpm dev:server\" \"pnpm dev:web\"",
"dev:server": "tsx watch src/server/index.ts",
"dev:tui": "tsx src/tui/index.tsx",
"dev:web": "vite",
"build": "pnpm build:server && pnpm build:web",
"build:server": "tsc -p tsconfig.server.json",
"build:web": "tsc -p tsconfig.json && vite build",
"start": "node dist/server/index.js",
"tui": "node dist/tui/index.js",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@fastify/multipart": "latest",
"@fastify/static": "latest",
"@modelcontextprotocol/sdk": "latest",
"better-sqlite3": "latest",
"fastify": "latest",
"ink": "7.1.1",
"katex": "^0.16.47",
"open-websearch": "2.1.11",
"react": "latest",
"react-dom": "latest",
"react-markdown": "latest",
"rehype-katex": "^7.0.1",
"remark-gfm": "latest",
"remark-math": "^6.0.0",
"string-width": "^8.2.2",
"zod": "latest"
},
"devDependencies": {
"@types/better-sqlite3": "latest",
"@types/node": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"@vitejs/plugin-react": "latest",
"concurrently": "latest",
"ink-testing-library": "4.0.0",
"tsx": "latest",
"typescript": "latest",
"vite": "latest",
"vitest": "latest"
}
}