-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.18 KB
/
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
36
37
38
39
{
"name": "jacinto",
"version": "1.0.0",
"description": "Multi-purpose Discord bot for personal-ish use.",
"type": "module",
"main": "dist/main.js",
"scripts": {
"register": "npx tsc && node dist/register-commands.js",
"start": "npx tsc && node .",
"format:check": "npx prettier --check .",
"format:write": "npx prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/ruiasribeiro/jacinto.git"
},
"author": "ruiasribeiro",
"license": "MIT",
"bugs": {
"url": "https://github.com/ruiasribeiro/jacinto/issues"
},
"homepage": "https://github.com/ruiasribeiro/jacinto#readme",
"dependencies": {
"cheerio": "^1.0.0-rc.10",
"chrono-node": "^2.3.6",
"discord.js": "^14.7.1",
"dotenv": "^16.0.0",
"node-fetch": "^3.2.10"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"tslib": "^2.3.1",
"typescript": "^4.5.5"
}
}