forked from maticzav/graphql-shield
-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
41 lines (41 loc) · 1.08 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
{
"name": "trpc-shield",
"version": "0.4.4",
"description": "tRPC permissions as another layer of abstraction!",
"repository": "https://github.com/omar-dulaimi/trpc-shield",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"author": {
"name": "Omar Dulaimi",
"url": "https://github.com/omar-dulaimi"
},
"keywords": [
"trpc",
"trpc-shield"
],
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"prerelease": "npm run build",
"release": "./package.sh && cd package && npm publish",
"prettier": "prettier --ignore-path .gitignore --write --list-different \"**/*.{ts,tsx,yml}\""
},
"devDependencies": {
"@types/node": "18.16.2",
"lint-staged": "13.2.2",
"prettier": "2.8.8",
"pretty-quick": "3.1.3",
"rimraf": "5.0.0",
"ts-node": "10.9.1",
"typescript": "5.0.4"
},
"bugs": {
"url": "https://github.com/omar-dulaimi/trpc-shield/issues"
},
"homepage": "https://github.com/omar-dulaimi/trpc-shield#readme",
"private": true,
"dependencies": {
"@trpc/server": "^10.21.2"
}
}