-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
91 lines (91 loc) · 2.5 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "polaris",
"version": "0.10.1",
"description": "A multi platform TypeScript bot using plugins!",
"license": "AGPL-3.0",
"author": {
"name": "ender-null",
"email": "[email protected]",
"url": "https://github.com/ender-null"
},
"homepage": "https://github.com/ender-null/polaris#readme",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ender-null/polaris.git"
},
"bugs": {
"url": "https://github.com/ender-null/polaris/issues"
},
"main": "build/src/main.js",
"scripts": {
"typedoc": "typedoc",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"start": "NODE_OPTIONS=\"--max_old_space_size=4096\" UV_THREADPOOL_SIZE=128 node build/src/main.js",
"start:dev": "ENV=\"dev\" node build/src/main.js",
"test": "echo \"No tests yet\" && exit 0",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write src"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"type": "commonjs",
"engines": {
"node": ">=12"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"discord.js": "^14.14.1",
"firebase": "^10.10.0",
"form-data": "^4.0.0",
"html-to-text": "^9.0.5",
"matrix-bot-sdk": "^0.7.1",
"mime-types": "^2.1.35",
"node-cron": "^3.0.3",
"node-fetch": "^2",
"prebuilt-tdlib": "^0.1008026.0",
"string-format": "^2.0.0",
"tdl": "v7.4.1",
"tdl-tdlib-addon": "^1.2.2",
"tmp": "^0.2.3",
"winston": "^3.13.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@types/mime-types": "^2.1.4",
"@types/node": "^20.12.2",
"@types/node-fetch": "^3.0.3",
"@types/tmp": "^0.2.6",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-ava": "^14.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"fluture": "^14.0.0",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"tdlib-types": "td-1.8.14",
"typedoc": "^0.25.12",
"typescript": "^5.4.3"
},
"keywords": [
"polaris",
"polaris js",
"polaris.js",
"telegram",
"telegram bot api",
"bot",
"botapi",
"bot framework"
]
}