forked from max-messenger/max-bot-api-client-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.25 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.25 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
{
"name": "@maxhub/max-bot-api",
"version": "0.2.1",
"description": "Max Bot Framework",
"repository": "https://github.com/max-messenger/max-bot-api-client-ts",
"author": "Juice Development",
"license": "MIT",
"engines": {
"node": ">=18.18.0"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./dist/"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./types": {
"types": "./dist/types.d.ts",
"default": "./dist/types.js"
}
},
"typesVersions": {
"*": {
"types": [
"./dist/types.d.ts"
]
}
},
"scripts": {
"build": "tsc",
"lint": "eslint ./src --ext ts --report-unused-disable-directives"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/node": "^22.5.5",
"@types/vcf": "^2.0.7",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-import": "^2.25.2",
"mit-license": "^1.0.0",
"nodemon": "^3.1.7",
"typescript": "^5.4.2"
},
"dependencies": {
"debug": "^4.3.7",
"vcf": "^2.1.2"
}
}