-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.06 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
{
"name": "@bug4you/telegramjs",
"version": "1.0.0",
"description": "A special library created to use Telegrambot",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"private": false,
"scripts": {
"debug": "rollup -c",
"dev": "rollup -c -w",
"build": "rollup -c --environment NODE_ENV:production",
"lint": "eslint ./src/**/*.js"
},
"files": [
"dist"
],
"author": "Dilshod Fayzullayev <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:bug4you/telegramjs.git"
},
"bugs": {
"url": "https://github.com/bug4you/telegramjs/issues"
},
"homepage": "https://github.com/bug4you/telegramjs#readme",
"keywords": [
"telegrambot", "telegramjs", "telegram-bot"
],
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"eslint": "^8.56.0",
"rollup": "^4.9.4",
"rollup-plugin-uglify": "^6.0.4"
}
}