-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 903 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": "plaintl",
"version": "1.2.3",
"description": "A plain telegram listener",
"main": "./src/index.mjs",
"bin": {
"plaintl": "./cli.js"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"scripts": {
"dev": "rollup --config --watch",
"build": "rollup --config"
},
"keywords": [
"telegram",
"tl-schema",
"mtproto",
"plaintl"
],
"repository": "https://github.com/dalirnet/plaintl.git",
"author": "Amir Reza Dalir <[email protected]>",
"license": "GPL-3.0",
"devDependencies": {
"rollup": "^2.64.0",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {
"dotenv": "^12.0.3",
"input": "^1.0.1",
"lodash": "^4.17.21",
"telegram": "^2.4.1"
}
}