-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.86 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.86 KB
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": "messenger-bot-manager",
"version": "1.0.0",
"description": "TypeScript application for managing Telegram amd Max bots with webhook support",
"type": "module",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"scripts": {
"prepare": "tsc -p tsconfig.json && tsc-alias -p tsconfig.json && tsc -p tsconfig-cjs.json && tsc-alias -p tsconfig-cjs.json",
"build": "npm run prepare",
"example": "npm run build && node example/server.js",
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.ts\" --fix",
"format": "prettier --check \"src/**/*.ts\"",
"format:fix": "prettier --write \"src/**/*.ts\""
},
"exports": {
".": {
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js",
"default": "./lib/esm/index.js"
},
"./types": {
"import": "./lib/esm/types/index.js",
"require": "./lib/cjs/types/index.js",
"default": "./lib/esm/types/index.js"
}
},
"types": "./lib/esm/index.d.ts",
"keywords": [
"messenger",
"bot",
"telegram",
"max"
],
"author": "Shashenko Andrey",
"license": "ISC",
"dependencies": {
"@maxhub/max-bot-api": "^0.2.1",
"telegraf": "^4.14.1"
},
"devDependencies": {
"@types/node": "^24.10.0",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"concurrently": "^9.2.1",
"dotenv": "^16.3.1",
"eslint": "^9.39.1",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-prettier": "^5.5.4",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.16",
"tsconfig-paths": "^4.2.0",
"tsup": "^8.1.0",
"typescript": "^5.9.3"
}
}