This repository has been archived on 2023-08-07. You can view files and clone it, but cannot push or open issues or pull requests.
vylbot-core/package.json

39 lines
965 B
JSON
Raw Normal View History

2020-10-20 10:45:24 +01:00
{
"name": "vylbot-core",
2021-06-26 21:39:02 +01:00
"version": "1.0.5",
2020-10-20 10:45:24 +01:00
"description": "A discord client based upon discord.js",
"main": "./src/index",
"scripts": {
2021-07-14 13:55:36 +01:00
"build": "tsc",
2021-01-16 19:06:35 +00:00
"test": "jest --coverage",
2021-08-20 15:58:41 +01:00
"lint": "eslint ."
2020-10-20 10:45:24 +01:00
},
"author": "Vylpes",
2020-10-20 12:07:49 +01:00
"license": "MIT",
2020-11-03 18:09:47 +00:00
"funding": "https://ko-fi.com/gravitysoftware",
2020-10-20 10:45:24 +01:00
"dependencies": {
2021-07-14 13:55:36 +01:00
"discord.js": "^12.3.1",
"dotenv": "^10.0.0"
2020-10-20 12:07:49 +01:00
},
"bugs": "https://github.com/vylpes/vylbot-core/issues",
"homepage": "https://github.com/vylpes/vylbot-core",
"keywords": [
"discord",
"bot",
"client"
],
2021-02-07 14:12:56 +00:00
"repository": "github:vylpes/vylbot-core",
"devDependencies": {
2021-07-30 15:49:12 +01:00
"@types/jest": "^26.0.24",
2021-07-14 14:39:48 +01:00
"@types/node": "^16.3.2",
2021-08-19 17:21:54 +01:00
"@types/proxyquire": "^1.3.28",
2021-08-20 15:58:41 +01:00
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"eslint": "^7.32.0",
2021-07-30 15:49:12 +01:00
"jest": "^27.0.6",
2021-08-19 17:21:54 +01:00
"proxyquire": "^2.1.3",
2021-07-30 15:49:12 +01:00
"ts-jest": "^27.0.4",
2021-07-14 13:55:36 +01:00
"typescript": "^4.3.5"
2021-02-07 14:12:56 +00:00
}
2020-10-20 10:45:24 +01:00
}