-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 KB
/
package.json
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
{
"name": "discord_trashed_diver",
"version": "1.0.0",
"main": "index.js",
"author": "huequica <dev@huequica.xyz>",
"license": "MIT",
"private": true,
"engines": {
"node": "^18.20.2"
},
"scripts": {
"start": "node dist/index.js",
"build": "pnpm typeCheck && esbuild --bundle --outdir=dist --platform=node src/index.ts",
"typeCheck": "tsc --noEmit",
"lint": "biome lint src/",
"lint:fix": "pnpm lint --apply",
"format": "biome format src/",
"format:fix": "pnpm format --write",
"ci": "biome ci src/",
"quickFix": "biome check --apply src",
"test": "jest"
},
"devDependencies": {
"@biomejs/biome": "^1.7.0",
"@jest/types": "^29.6.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"esbuild": "^0.20.2",
"jest": "^29.7.0",
"jest-discordjs-mocks": "^1.0.2",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"axios": "^1.6.8",
"discord.js": "^14.14.1",
"dotenv": "^16.4.5",
"make-dir": "^4.0.0",
"twitter-api-v2": "^1.16.1"
}
}