-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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
40
41
42
43
44
45
{
"name": "protobot-ts",
"version": "1.0.0",
"description": "General Purpose DD2 Discord bot written in Typescript with Discord.js.",
"type": "module",
"main": "./prod/index.js",
"scripts": {
"build": "tsc",
"start": "tsc && node -r dotenv/config ./prod/index.js",
"postinstall": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cryotalis/Protobot-TS.git"
},
"keywords": [],
"author": "Hywell",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Cryotalis/Protobot-TS/issues"
},
"homepage": "https://github.com/Cryotalis/Protobot-TS#readme",
"dependencies": {
"@google-cloud/translate": "^8.5.0",
"axios": "^1.7.9",
"canvas": "^3.1.0",
"discord.js": "^14.17.3",
"dotenv": "^16.4.7",
"google-auth-library": "^9.15.1",
"google-spreadsheet": "^4.1.4",
"html-entities": "^2.5.2",
"node-cron": "^3.0.3",
"node-html-parser": "^7.0.1",
"rss-parser": "^3.13.0",
"string-similarity": "^4.0.4",
"unescape": "^1.0.1",
"uuid": "^11.0.5"
},
"devDependencies": {
"@types/node": "^22.13.1",
"@types/node-cron": "^3.0.11",
"@types/string-similarity": "^4.0.2",
"typescript": "^5.7.3"
}
}