forked from hunghg255/telegram-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.72 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
{
"name": "telegram-sdk",
"version": "0.0.7",
"packageManager": "[email protected]",
"description": "Telegram Web App - (Uses July 7, 2024, Bot API 7.7)",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./core": {
"import": {
"types": "./dist/core.d.mts",
"default": "./dist/core.mjs"
},
"require": {
"types": "./dist/core.d.ts",
"default": "./dist/core.js"
}
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsup",
"prepublishOnly": "npm run build",
"release": "bumpp",
"lint": "tsc",
"verify-commit": "verify-commit-msg",
"prepare": "git-scm-hooks"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hunghg255/telegram-sdk.git"
},
"files": [
"dist"
],
"keywords": [
"telegram-web-app",
"telegram-mini-app",
"telegram",
"telegram-bot",
"telegram web apps",
"telegram mini apps",
"telegram bot",
"telegram bot api",
"telegram-sdk"
],
"author": "hunghg255",
"license": "MIT",
"bugs": {
"url": "https://github.com/hunghg255/telegram-sdk/issues"
},
"homepage": "https://github.com/hunghg255/telegram-sdk#readme",
"devDependencies": {
"bumpp": "^9.4.1",
"git-scm-hooks": "^0.0.11",
"tsup": "^8.2.3",
"typescript": "^5.5.4",
"verify-commit-msg": "^0.0.14"
},
"git-hooks": {
"pre-commit": "npm run lint",
"commit-msg": "npm run verify-commit"
}
}