-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.38 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "fastify-grammy",
"type": "module",
"version": "0.1.0",
"packageManager": "[email protected]",
"description": "",
"author": "",
"license": "MIT",
"keywords": [],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --dts --format esm,cjs --clean",
"dev": "vitest dev",
"lint": "eslint .",
"postinstall": "lefthook install",
"prepack": "pnpm build",
"prepublishOnly": "pnpm lint && pnpm test",
"release": "pnpm test && bumpp && npm publish",
"test": "pnpm test:unit && pnpm test:types && pnpm test:package",
"test:unit": "vitest --run",
"test:types": "tsc --noEmit",
"test:package": "publint"
},
"dependencies": {
"@fastify/error": "^4.0.0",
"fastify-plugin": "5.0.1",
"grammy": "^1.31.3"
},
"devDependencies": {
"@antfu/eslint-config": "^3.9.1",
"@types/node": "^20.17.6",
"bumpp": "^9.8.1",
"changelogen": "^0.5.7",
"eslint": "^9.14.0",
"fastify": "5.1.0",
"lefthook": "1.8.2",
"publint": "^0.2.12",
"tsup": "^8.3.5",
"typescript": "5.6.3",
"vitest": "^2.1.5"
},
"resolutions": {
"fastify-grammy": "link:."
}
}