-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
36 lines (36 loc) · 938 Bytes
/
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
{
"name": "@openid4vc/oauth2",
"version": "0.2.0",
"files": ["dist"],
"license": "Apache-2.0",
"exports": "./src/index.ts",
"homepage": "https://github.com/openwallet-foundation-labs/oid4vc-ts/tree/main/packages/oauth2",
"repository": {
"type": "git",
"url": "https://github.com/openwallet-foundation-labs/oid4vc-ts",
"directory": "packages/oauth2"
},
"publishConfig": {
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
}
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean --sourcemap"
},
"dependencies": {
"@openid4vc/utils": "workspace:*",
"zod": "catalog:"
},
"devDependencies": {
"jose": "catalog:"
}
}