-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 897 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 897 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
34
{
"name": "discord-link-aggregation-bot",
"version": "0.1.0",
"private": true,
"description": "Discord bot for indexing and retrieving shared links",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "tsc --noEmit -p tsconfig.json",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:integration": "vitest run tests/integration --runInBand",
"start": "node dist/src/index.js",
"start:dev": "tsx watch src/index.ts"
},
"dependencies": {
"discord.js": "^14.26.2",
"dotenv": "^16.6.1",
"zod": "^3.25.67",
"pino": "^8.20.0",
"pino-pretty": "^9.1.1"
},
"devDependencies": {
"@types/node": "^24.5.2",
"@vitest/coverage-istanbul": "^3.2.4",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}