29 lines
633 B
JSON
29 lines
633 B
JSON
{
|
|
"name": "valDiscord",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@discordjs/rest": "^1.1.0",
|
|
"discord.js": "^14.3.0",
|
|
"dotenv": "^16.0.1",
|
|
"node-valorant-api": "^0.5.0"
|
|
},
|
|
"devDependencies": {
|
|
"@matt-fidd/eslint-config": "^1.3.4",
|
|
"eslint": "^8.22.0",
|
|
"husky": "^8.0.1",
|
|
"lint-staged": "^13.0.3"
|
|
},
|
|
"lint-staged": {
|
|
"*.js": "eslint --cache --fix"
|
|
},
|
|
"scripts": {
|
|
"prepare": "husky install",
|
|
"lint": "yarn lint:check",
|
|
"lint:check": "eslint .",
|
|
"lint:fix": "eslint --fix .",
|
|
"register": "node registerCommands.js"
|
|
}
|
|
}
|