forked from ender-null/polaris
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.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.9.16",
"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.9",
"discord.js": "^13.6.0",
"firebase": "^9.6.4",
"form-data": "^4.0.0",
"html-to-text": "^8.1.0",
"matrix-bot-sdk": "^0.6.1",
"mime-types": "^2.1.30",
"node-cron": "^3.0.0",
"node-fetch": "^2.6.7",
"prebuilt-tdlib": "^0.1008005.0",
"string-format": "^2.0.0",
"tdl": "^7.0.0",
"tdl-tdlib-addon": "^1.2.1",
"tmp": "^0.2.1",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.6.0"
},
"devDependencies": {
"@types/mime-types": "^2.1.0",
"@types/node": "^17.0.10",
"@types/node-fetch": "^3.0.3",
"@types/tmp": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.2",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-ava": "^13.2.0",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"fluture": "^14.0.0",
"husky": "^7.0.4",
"prettier": "^2.3.0",
"tdlib-types": "^0.1001008.1",
"typedoc": "^0.22.11",
"typescript": "^4.5.5"
},
"keywords": [
"polaris",
"polaris js",
"polaris.js",
"telegram",
"telegram bot api",
"bot",
"botapi",
"bot framework"
]
}