-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 894 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
35
{
"name": "automod",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"lint-fix": "eslint --cache --fix src/ && prettier --write src/",
"test": "ts-node src/main.ts",
"start": "node build/main.js",
"compile": "tsc -p ."
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.4.0",
"@typescript-eslint/parser": "^8.0.0-alpha.13",
"eslint": "^9.4.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^48.2.7",
"globals": "^15.3.0",
"prettier": "^3.2.5",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^8.0.0-alpha.13"
},
"dependencies": {
"@microsoft/tsdoc": "^0.15.0",
"discord.js": "^14.15.2",
"dotenv": "^16.4.5",
"yaml": "^2.4.2"
}
}