-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.24 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.24 KB
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
45
46
47
48
49
50
51
52
{
"name": "@grom.js/bot-api-spec",
"type": "module",
"version": "0.8.0",
"packageManager": "pnpm@10.25.0",
"description": "Telegram Bot API specification as a collection of JavaScript objects in a custom format.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/grom-dev/bot-api-spec.git"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./format": {
"types": "./dist/format.d.ts",
"import": "./dist/format.js"
}
},
"files": [
"./dist/",
"./src/"
],
"engines": {
"node": ">=22.18"
},
"scripts": {
"typecheck": "tsc --build --noEmit",
"build": "tsc --build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"gen": "node ./scripts/generate.ts",
"deps": "taze --write --interactive --include-locked minor",
"release": "bumpp"
},
"devDependencies": {
"@antfu/eslint-config": "7.6.1",
"@types/node": "22.19.13",
"@types/turndown": "5.0.6",
"bumpp": "10.4.1",
"cheerio": "1.2.0",
"domhandler": "5.0.3",
"eslint": "9.39.3",
"eslint-plugin-format": "2.0.1",
"taze": "19.9.2",
"turndown": "7.2.2",
"typescript": "5.9.3",
"zod": "4.3.6"
}
}