-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.07 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.07 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@gramio/format",
"version": "0.6.0",
"repository": {
"type": "git",
"url": "git+https://github.com/gramiojs/format.git"
},
"main": "./dist/index.js",
"dependencies": {
"@gramio/types": "^9.5.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@types/bun": "^1.3.9",
"expect-type": "^1.3.0",
"marked": "^17.0.3",
"node-html-parser": "^7.0.2",
"pkgroll": "^2.27.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./markdown": {
"import": {
"types": "./dist/markdown/index.d.ts",
"default": "./dist/markdown/index.js"
},
"require": {
"types": "./dist/markdown/index.d.cts",
"default": "./dist/markdown/index.cjs"
}
},
"./html": {
"import": {
"types": "./dist/html/index.d.ts",
"default": "./dist/html/index.js"
},
"require": {
"types": "./dist/html/index.d.cts",
"default": "./dist/html/index.cjs"
}
},
"./middleware": {
"import": {
"types": "./dist/middleware.d.ts",
"default": "./dist/middleware.js"
},
"require": {
"types": "./dist/middleware.d.cts",
"default": "./dist/middleware.cjs"
}
},
"./dist/*": {
"import": {
"types": "./dist/*/index.d.ts",
"default": "./dist/*/index.js"
}
}
},
"description": "Library for formatting text for Telegram Bot API",
"files": [
"dist"
],
"homepage": "https://gramio.dev/formatting.html",
"keywords": [
"gramio",
"telegram",
"bot",
"formatting",
"markdown",
"html",
"markdownV2"
],
"license": "MIT",
"peerDependenciesMeta": {
"marked": {
"optional": true
},
"node-html-parser": {
"optional": true
}
},
"peerDependencies": {
"marked": "^15.0.11",
"node-html-parser": ">=6.0.0"
},
"scripts": {
"prepublishOnly": "bunx pkgroll",
"generate": "bun scripts/generate.ts",
"lint": "bunx @biomejs/biome check ./src",
"lint:fix": "bun lint --apply"
},
"type": "module"
}