Skip to content

Commit

Permalink
v3.0.1-alpha.9
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonraimondi committed Jun 11, 2023
1 parent b9c4546 commit 6c9ed00
Show file tree
Hide file tree
Showing 2 changed files with 135 additions and 18 deletions.
44 changes: 28 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
{
"version": "3.0.1-alpha.8",
"name": "@jmondi/oauth2-server",
"version": "3.0.1-alpha.9",
"packageManager": "pnpm@8.4.0",
"type": "module",
"author": "Jason Raimondi <jason@raimondi.us>",
"funding": "https://github.com/sponsors/jasonraimondi",
"license": "MIT",
"type": "module",
"scripts": {
"clean": "rimraf dist",
"prebuild": "run-s clean",
Expand All @@ -24,20 +26,10 @@
"./express": "./src/adapters/express.ts",
"./fastify": "./src/adapters/fastify.ts"
},
"tsup": {
"entry": {
"index": "./src/index.ts",
"express": "./src/adapters/express.ts",
"fastify": "./src/adapters/fastify.ts"
},
"format": ["cjs", "esm"],
"target": "node16",
"clean": true,
"dts": true,
"splitting": false,
"sourcemap": true
},
"publishConfig": {
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
Expand All @@ -64,7 +56,10 @@
}
}
},
"files": ["dist", "src"],
"files": [
"dist",
"src"
],
"engines": {
"node": ">=16"
},
Expand All @@ -91,8 +86,25 @@
"vitest": "^0.31.4"
},
"dependencies": {
"@swc/core": "^1.3.62",
"jsonwebtoken": "^9.0.0",
"ms": "^2.1.3",
"uri-js": "^4.4.1"
},
"tsup": {
"entry": {
"index": "./src/index.ts",
"express": "./src/adapters/express.ts",
"fastify": "./src/adapters/fastify.ts"
},
"format": [
"cjs",
"esm"
],
"target": "node16",
"clean": true,
"dts": true,
"splitting": false,
"sourcemap": true
}
}
109 changes: 107 additions & 2 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 6c9ed00

Please sign in to comment.