-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.79 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "fastify-inject-trpc",
"version": "0.1.0",
"description": "Plugin for Fastify that allows to use the Fastify inject API with the full power of tRPC types",
"license": "MIT",
"author": {
"name": "notcodev",
"url": "https://github.com/notcodev"
},
"repository": {
"url": "https://github.com/notcodev/fastify-inject-trpc.git",
"type": "git"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/**/*"
],
"homepage": "https://github.com/notcodev/telegram-login-ultimate",
"bugs": "https://github.com/notcodev/telegram-login-ultimate/issues",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "shx rm -rf dist && rollup -c --bundleConfigAsCjs",
"lint": "eslint . --ext ts --no-error-on-unmatched-pattern --fix",
"change": "beachball change --no-commit",
"release": "beachball publish --yes",
"prepare": "husky"
},
"keywords": [
"fastify",
"trpc",
"inject-api"
],
"peerDependencies": {
"@trpc/server": "^10.45.0",
"fastify": "^5.0.0"
},
"peerDependenciesMeta": {
"@trpc/server": {
"optional": false
},
"fastify": {
"optional": false
}
},
"devDependencies": {
"@siberiacancode/builder": "^1.3.11",
"@trpc/server": "^10.45.2",
"@types/node": "^22.7.5",
"beachball": "^2.43.1",
"eslint": "^8.57.0",
"eslint-kit": "^10.27.0",
"fastify": "^5.0.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.2.5",
"shx": "^0.3.4",
"typescript": "^5.6.2"
},
"dependencies": {
"fastify-plugin": "5.0.0"
},
"lint-staged": {
"*.js": "prettier --write",
"*.ts": [
"prettier --write",
"eslint --no-error-on-unmatched-pattern --fix"
]
}
}