-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
42 lines (42 loc) · 1.04 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
{
"name": "@grammyjs/validator",
"description": "Validation logic for Telegram Web Bots and Login Widgets",
"version": "1.0.1",
"author": "KnorpelSenf",
"license": "MIT",
"engines": {
"node": "^12.20.0 || >=14.13.1"
},
"homepage": "https://github.com/grammyjs/validator",
"repository": {
"type": "git",
"url": "https://github.com/grammyjs/validator"
},
"scripts": {
"prepare": "npm run backport",
"cache": "deno cache src/mod.ts",
"lint": "deno lint --config deno.jsonc",
"fmt": "deno fmt --config deno.jsonc",
"test": "deno test ./test/",
"backport": "deno2node tsconfig.json"
},
"devDependencies": {
"@types/node": "^12.20.47",
"deno2node": "^1.3.0"
},
"files": [
"out/"
],
"main": "./out/mod.js",
"types": "./out/mod.d.ts",
"keywords": [
"telegram",
"web",
"bot",
"api",
"grammy",
"login",
"widget",
"validation"
]
}