-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.24 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
{
"name": "@merqva/telegram-passport",
"version": "1.0.2",
"description": "Decrypt/Parse incoming Telegram Passport data",
"homepage": "https://github.com/merqva/telegram-passport",
"author": "Yoel Navas <yn4v4s@gmail.com>",
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"build": "rimraf -rf dist && tsc -p tsconfig.json",
"format": "prettier --write \"{src,test}/**/*.ts\"",
"lint": "eslint 'src/**/*.ts' --fix",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next"
},
"keywords": [
"telegram",
"passport",
"crypto",
"typescript",
"npm",
"package"
],
"devDependencies": {
"@types/node": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"rimraf": "3.0.2",
"typescript": "^4.5.5"
},
"repository": {
"type": "git",
"url": "git@github.com:merqva/telegram-passport.git"
},
"bugs": {
"url": "https://github.com/merqva/telegram-passport/issues"
}
}