-
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.16 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.16 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": "backscroll",
"version": "0.1.0",
"description": "Postgres-backed Discord ingestion and retrieval stack for search, analysis, and downstream AI workflows.",
"type": "module",
"bin": {
"backscroll": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/**/*.ts",
"typecheck": "tsc --noEmit"
},
"keywords": [
"discord",
"postgres",
"ingestion",
"archive",
"search",
"cli"
],
"license": "MIT",
"dependencies": {
"@discordjs/rest": "^2.4.0",
"chalk": "^5.4.1",
"cli-table3": "^0.6.5",
"commander": "^13.1.0",
"discord-api-types": "^0.37.119",
"dotenv": "^16.4.7",
"kysely": "^0.27.5",
"p-limit": "^6.2.0",
"pg": "^8.14.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/pg": "^8.11.11",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"eslint": "^9.22.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"vitest": "^3.0.9"
},
"engines": {
"node": ">=20.0.0"
}
}