-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.45 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "yapp-slack",
"version": "0.1.0",
"description": "YAPP Discord Bot",
"private": true,
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "NODE_ENV=local tsx watch src/index.ts",
"dev:prod": "NODE_ENV=prod tsx watch src/index.ts",
"build": "tsc",
"start": "NODE_ENV=prod node dist/index.js",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write 'src/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts'",
"typecheck": "tsc --noEmit",
"prepare": "husky",
"deploy-commands": "NODE_ENV=local tsx src/deploy-commands.ts",
"deploy-commands:prod": "NODE_ENV=prod tsx src/deploy-commands.ts",
"fetch-messages": "NODE_ENV=local tsx src/scripts/fetch-messages.ts",
"fetch-messages:prod": "NODE_ENV=prod tsx src/scripts/fetch-messages.ts",
"consolidate-messages": "tsx src/scripts/consolidate-messages.ts",
"build-rag-chunks": "tsx src/scripts/build-rag-chunks.ts",
"embed-chunks": "NODE_ENV=local tsx src/scripts/embed-chunks.ts",
"compute-chunk-labels": "NODE_ENV=local tsx src/scripts/compute-chunk-labels.ts",
"retokenize-chunks": "NODE_ENV=local tsx src/scripts/retokenize-chunks.ts",
"label-channels": "NODE_ENV=local tsx src/scripts/label-channels.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"coverage:ratchet": "tsx scripts/check-coverage-ratchet.ts"
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@anthropic-ai/sdk": "^0.82.0",
"@octokit/rest": "^21.0.0",
"better-sqlite3": "^11.0.0",
"discord.js": "^14.16.0",
"dotenv": "^16.5.0",
"express": "^5.2.1",
"googleapis": "^171.4.0",
"kiwi-nlp": "^0.23.0",
"node-cron": "^3.0.0",
"openai": "^6.37.0",
"sqlite-vec": "^0.1.9"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.6",
"@types/node": "^22.0.0",
"@types/node-cron": "^3.0.11",
"@types/supertest": "^7.2.0",
"@vitest/coverage-v8": "^4.1.5",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.5.0",
"supertest": "^7.2.2",
"tsx": "^4.19.0",
"typescript": "^5.8.0",
"typescript-eslint": "^8.0.0",
"vitest": "^4.1.5"
}
}