forked from suchipi/link-fixer-discord-bot
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
72 lines (72 loc) · 2 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "linkfix-for-discord",
"displayName": "LinkFix for Discord",
"description": "LinkFix is a Discord bot that replies to messages containing annoying links (Twitter, YouTube Shorts) with better ones (fxtwitter, youtu.be)",
"version": "1.9.1",
"private": true,
"keywords": [
"discord",
"discord.js",
"discord-bot",
"twitter",
"fxtwitter",
"vxtwitter",
"youtube",
"youtube-shorts",
"instagram",
"ddinstagram",
"tiktok",
"vxtiktok",
"reddit",
"vxreddit"
],
"homepage": "https://podaboutli.st/discord",
"bugs": {
"url": "https://github.com/podaboutlist/linkfix-for-discord/issues",
"email": "[email protected]"
},
"license": "AGPL-3.0-or-later",
"author": {
"name": "Ralph",
"email": "[email protected]",
"url": "https://podaboutli.st/discord"
},
"contributors": [
{
"name": "suchipi",
"email": "[email protected]",
"url": "https://suchipi.com"
}
],
"repository": "github:podaboutlist/linkfix-for-discord",
"scripts": {
"start": "node dist/index.js",
"build": "rm -rf dist && tsc --project ./tsconfig.json",
"build-prod": "rm -rf dist && tsc --project ./tsconfig.prod.json --listEmittedFiles",
"prettier": "prettier --check .",
"eslint": "eslint .",
"format": "eslint . --fix && prettier . --write",
"appcmd-cli": "ts-node src/cli/AppCommandsCLI.ts"
},
"dependencies": {
"@tsconfig/node-lts": "^20.1.3",
"@types/node": "^20.17.12",
"discord.js": "^14.17.3",
"dotenv": "^16.4.7",
"i18next": "^23.16.8",
"i18next-fs-backend": "^2.6.0",
"typescript": "<5.6.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"commander": "^12.1.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.4.2",
"ts-node": "^10.9.2"
}
}