-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1007 Bytes
/
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
{
"name": "telegram-router",
"version": "1.0.5",
"type": "module",
"description": "A simple and powerful telegram bot router",
"author": "tbxark <tbxark@outlook.com>",
"license": "MIT",
"repository": "git@github.com:TBXark/telegram-router.git",
"files": [
"dist"
],
"main": "./dist/counter.umd.cjs",
"module": "./dist/counter.js",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint --fix src"
},
"devDependencies": {
"@antfu/eslint-config": "^2.27.3",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^22.5.1",
"eslint": "^9.8.0",
"rollup-plugin-node-externals": "^7.1.3",
"telegram-bot-api-types": "^7.9.12",
"tsx": "^4.19.0",
"typescript": "^5.4.5",
"vite": "5.4.6",
"vitest": "^2.0.5"
}
}