diff --git a/index.ts b/index.ts index 385b499..fdb5bba 100644 --- a/index.ts +++ b/index.ts @@ -1,2 +1 @@ -export * as JWT from 'jwt' export * as pwd from 'pwd' diff --git a/package.json b/package.json index a514fa9..bc726e4 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,6 @@ "test": "bun test" }, "dependencies": { - "jose": "^5.3.0", "result": "git+git@git.pband.ch:typescript/result.git" }, "devDependencies": { diff --git a/src/jwt.ts b/src/jwt.ts deleted file mode 100644 index 92a7c36..0000000 --- a/src/jwt.ts +++ /dev/null @@ -1,10 +0,0 @@ -import {Result} from 'result' - -export type JWT = `${string}.${string}.${string}` - -export function create() : Result { - throw "todo" -} -export function verify() : boolean { - throw "todo" -}