-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.14 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
{
"name": "@effect-ak/tg-bot-client",
"version": "0.5.1",
"homepage": "https://effect-ak.github.io/telegram-bot-playground/",
"author": {
"name": "Aleksandr Kondaurov",
"email": "kondaurov.dev@gmail.com"
},
"publishConfig": {
"access": "public"
},
"description": "Telegram bot client",
"files": [
"dist/index.js",
"dist/index.mjs",
"dist/index.d.ts"
],
"keywords": [
"telegram",
"telegram bot api"
],
"repository": {
"url": "https://github.com/effect-ak/tg-bot-client"
},
"license": "MIT",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"devDependencies": {
"@types/node": "^22.10.1",
"@types/js-yaml": "^4.0.9",
"js-yaml": "^4.1.0",
"node-html-parser": "^6.1.13",
"openapi-types": "^12.1.3",
"ts-morph": "^24.0.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8"
},
"dependencies": {
"effect": "^3.11.0"
}
}