Skip to content

Commit

Permalink
Fine package.json and tsconfig.json (#30)
Browse files Browse the repository at this point in the history
* feat: add package.json for files and kepwords

Signed-off-by: KeisukeYamashita <19yamashita15@gmail.com>

* feat: add exports

Signed-off-by: KeisukeYamashita <19yamashita15@gmail.com>

---------

Signed-off-by: KeisukeYamashita <19yamashita15@gmail.com>
  • Loading branch information
KeisukeYamashita authored Apr 14, 2023
1 parent a1c8026 commit 27e7e94
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
{
"name": "graphql-citadel",
"version": "0.2.2",
"version": "0.2.3",
"description": "Easy to use schema-first GraphQL schema directive for authentication and authorization",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./errors": "./dist/errors/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/KeraphQL/graphql-citadel.git"
Expand All @@ -14,7 +18,13 @@
"build": "tsc"
},
"files": [
"dist"
"dist/"
],
"keywords": [
"authentication",
"authorization",
"graphql",
"security"
],
"dependencies": {
"@apollo/server": "^4.6.0",
Expand Down

0 comments on commit 27e7e94

Please sign in to comment.