-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.22 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
{
"name": "slowpoke",
"version": "0.1.0",
"description": "A Discord bot written in TypeScript - converted from Rust",
"packageManager": "pnpm@11.11.0",
"main": "dist/main.js",
"scripts": {
"build": "tsc",
"start": "node dist/main.js",
"dev": "tsx src/main.ts",
"clean": "rm -rf dist",
"prebuild": "pnpm run clean && pnpm run lint",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "tsx --test test/*.test.ts",
"typecheck": "tsc --noEmit -p tsconfig.test.json",
"smoke:live": "tsx scripts/live-smoke.ts"
},
"keywords": [
"discord",
"bot",
"typescript"
],
"author": "Jeph",
"license": "ISC",
"dependencies": {
"@langchain/core": "^1.2.2",
"@langchain/mcp-adapters": "1.1.3",
"@langchain/openai": "1.5.5",
"@langchain/textsplitters": "^1.0.1",
"discord.js": "^14.26.5",
"dotenv": "^17.4.2",
"langchain": "^1.5.3",
"openai": "6.46.0",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"zod": "4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.1.1",
"eslint": "^10.7.0",
"globals": "^17.7.0",
"tsx": "^4.23.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.63.0"
}
}