-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.01 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
{
"name": "mattermost-knowledge-bot",
"version": "0.1.0",
"description": "Mattermost bot that captures threads and builds a structured knowledge wiki on Outline.",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src --ext .ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.30.0",
"@mattermost/client": "^10.0.0",
"better-sqlite3": "^11.3.0",
"dotenv": "^16.4.5",
"mammoth": "^1.8.0",
"pdf-parse": "^1.1.1",
"pino": "^9.4.0",
"pino-pretty": "^11.2.2",
"ws": "^8.18.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/node": "^22.7.0",
"@types/pdf-parse": "^1.1.4",
"@types/ws": "^8.5.13",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"vitest": "^2.1.0"
}
}