-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.28 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.28 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
{
"name": "discord-bot",
"version": "1.0.0",
"description": "Discord bot project",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc && tsc-alias",
"start": "node dist/src/index.js",
"dev": "tsx watch src/index.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{ts,js,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,js,json,md}\"",
"type-check": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"deploy-commands": "node dist/src/scripts/deploy_commands.js"
},
"keywords": [
"discord",
"bot"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@eslint/compat": "^1.2.3",
"@eslint/js": "^9.11.0",
"@swc/jest": "^0.2.29",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.0",
"eslint": "^9.11.0",
"globals": "^15.8.0",
"jest": "^29.7.0",
"prettier": "^3.2.4",
"prettier-plugin-organize-imports": "^3.2.3",
"prettier-plugin-sh": "^0.14.0",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.16",
"tsx": "^4.20.6",
"typescript": "^5.3.3",
"typescript-eslint": "^8.0.0"
},
"dependencies": {
"dedent": "^1.7.0",
"discord.js": "^14.25.0"
}
}