-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 857 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
{
"name": "smote",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/simonlary/Smote"
},
"main": "index.js",
"license": "MIT",
"type": "module",
"scripts": {
"build": "tsc",
"deploy": "node ./out/index.js",
"start": "npm run build && npm run deploy",
"lint": "eslint . && prettier --check .",
"lint:fix": "eslint --fix . && prettier --write ."
},
"dependencies": {
"discord.js": "^14.16.3",
"dotenv": "^16.4.7"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1"
}
}