forked from lockin-bot/react-telegram
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.38 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
59
60
{
"name": "@react-telegram/mtcute-adapter",
"version": "0.1.0",
"description": "MTCute adapter for React Telegram bots",
"type": "module",
"main": "./src/index.ts",
"module": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": {
"types": "./src/index.ts",
"import": "./src/index.ts",
"bun": "./src/index.ts"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "bun run clean && bun run build:types",
"build:types": "tsc",
"clean": "rm -rf dist",
"test": "bun test",
"test:watch": "bun test --watch",
"prepublishOnly": "bun run build"
},
"dependencies": {
"@mtcute/bun": "^0.24.3",
"@mtcute/dispatcher": "^0.24.3",
"@mtcute/tl": "*",
"@react-telegram/core": "workspace:*",
"react": "^19.1.0"
},
"devDependencies": {
"@types/react": "npm:pure-react-types@^0.1.4",
"typescript": "^5"
},
"peerDependencies": {
"@react-telegram/core": "^0.1.0",
"react": ">=18.0.0"
},
"keywords": [
"react",
"telegram",
"bot",
"mtcute",
"adapter"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/your-username/react-telegram.git"
},
"bugs": {
"url": "https://github.com/your-username/react-telegram/issues"
},
"homepage": "https://github.com/your-username/react-telegram#readme"
}