-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 895 Bytes
/
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
{
"name": "discord-bot-ts",
"module": "dist/index.ts",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "rollup -c rollup.config.mjs",
"lint": "prettier ./src/ --write --log-level warn && eslint \"src/**/*.{js,ts}\" --fix"
},
"dependencies": {
"chalk": "^5.3.0",
"discord.js": "^14.16.3",
"dotenv": "^16.4.5"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.0",
"@stylistic/eslint-plugin": "^2.9.0",
"@types/bun": "latest",
"eslint": "^9.12.0",
"globals": "^15.11.0",
"prettier": "^3.3.3",
"rollup": "^4.24.0",
"tsx": "^4.19.1",
"typescript-eslint": "^8.8.1"
},
"peerDependencies": {
"typescript": "^5.6.3"
}
}