-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.72 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
55
56
57
58
59
60
{
"name": "docvault",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Self-hosted document knowledge base for AI agents and humans",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "tsc -p tsconfig.api.json",
"build:ui": "cd src/ui && npx vite build",
"dev": "tsx watch src/api/index.ts",
"start": "node --enable-source-maps dist/api/api/index.js",
"cli": "tsx src/cli/index.ts",
"db:migrate": "tsx src/db/migrate.ts",
"db:generate": "drizzle-kit generate --config drizzle.config.ts",
"db:push": "drizzle-kit push --config drizzle.config.ts",
"lint": "tsc --noEmit -p tsconfig.api.json",
"test": "vitest run"
},
"dependencies": {
"@fastify/cookie": "^11.0.2",
"@fastify/cors": "^11.2.0",
"@fastify/rate-limit": "^10.3.0",
"@fastify/sensible": "^6.0.4",
"@fastify/static": "^9.1.3",
"bcryptjs": "^2.4.3",
"commander": "^12.1.0",
"dotenv": "^16.6.1",
"drizzle-orm": "^0.38.3",
"fastify": "^5.1.0",
"fastify-plugin": "^5.0.1",
"isomorphic-dompurify": "^3.16.0",
"js-yaml": "^4.1.0",
"jsdom": "^25.0.1",
"lru-cache": "^11.0.2",
"pg": "^8.13.1",
"pg-boss": "^10.1.5",
"rehype-highlight": "^7.0.1",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/js-yaml": "^4.0.9",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.10.2",
"@types/pg": "^8.11.10",
"drizzle-kit": "^0.29.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}