-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
58 lines (58 loc) · 1.72 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
{
"name": "github-lines",
"version": "1.0.0",
"description": "Cross-platform bot to highlight lines in GitHub links.",
"homepage": "https://github.com/diogoscf/github-lines",
"main": "bot.js",
"bugs": "https://github.com/diogoscf/github-lines/issues",
"repository": "github:diogoscf/github-lines",
"author": "diogoscf <[email protected]> (https://diogos.cf)",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"nodejs",
"discord.js",
"telegram",
"github"
],
"scripts": {
"build": "tsc",
"start": "node build/app.js --discord --telegram",
"start-discord": "node build/app.js --discord",
"start-telegram": "node build/app.js --telegram",
"test": "ts-mocha -n loader=ts-node/esm tests/**/*.test.ts",
"lint": "eslint src --ext js,ts",
"lint-fix": "eslint src --ext js,ts --fix"
},
"dependencies": {
"@sapphire/framework": "^5.0.6",
"discord.js": "^14.14.1",
"dotenv": "^16.3.1",
"matrix-bot-sdk": "^0.7.0",
"node-fetch": "^2.7.0",
"node-telegram-bot-api": "0.64.0",
"topgg-autoposter": "^2.0.1",
"ts-is-present": "^1.2.2"
},
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@types/node-telegram-bot-api": "^0.64.2",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"chai": "^4.4.0",
"eslint": "8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.2.0",
"prettier": "^3.1.1",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}