-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 860 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 860 Bytes
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
{
"name": "backoffice",
"version": "0.0.1",
"scripts": {
"start": "bun run src/index.ts",
"test": "bun run lint && bun run typecheck",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/bun": "latest",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2"
},
"dependencies": {
"@langchain/anthropic": "^1.3.26",
"@langchain/openai": "^1.4.3",
"@modelcontextprotocol/sdk": "^1.29.0",
"commander": "^14.0.3",
"mcp-use": "^1.22.3",
"croner": "^10.0.1",
"nanoid": "^5.1.7",
"pkce-challenge": "^5.0.0",
"zod": "^4.3.6"
}
}