0.1.9 #10

Merged
Thilawyn merged 7 commits from next into master 2024-08-20 02:19:32 +02:00
3 changed files with 6 additions and 8 deletions
Showing only changes of commit 9034b23a52 - Show all commits

BIN
bun.lockb

Binary file not shown.

View File

@@ -70,18 +70,16 @@
"type-fest": "^4.25.0" "type-fest": "^4.25.0"
}, },
"devDependencies": { "devDependencies": {
"@effect/schema": "^0.71.0",
"@types/jsonwebtoken": "^9.0.6",
"bun-types": "^1.1.24", "bun-types": "^1.1.24",
"effect": "^3.6.4",
"jsonwebtoken": "^9.0.2",
"mobx": "^6.13.1",
"npm-check-updates": "^17.0.6", "npm-check-updates": "^17.0.6",
"npm-sort": "^0.0.4", "npm-sort": "^0.0.4",
"tsup": "^8.2.4", "tsup": "^8.2.4",
"tsx": "^4.17.0", "tsx": "^4.17.0",
"typescript": "^5.5.4" "typescript": "^5.5.4"
},
"optionalDependencies": {
"@effect/schema": "*",
"@types/jsonwebtoken": "*",
"effect": "*",
"jsonwebtoken": "*",
"mobx": "*"
} }
} }

View File

@@ -1,5 +1,5 @@
/** /**
* A wrapper around the jsonwebtoken library for Effect * A wrapper around the jsonwebtoken library for Effect
* Requires `jsonwebtoken` and `@types/jsonwebtoken` to be installed * Requires `effect`, `jsonwebtoken` and `@types/jsonwebtoken` to be installed
*/ */
export * as JSONWebToken from "./JSONWebToken" export * as JSONWebToken from "./JSONWebToken"