-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.06 KB
/
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
37
38
39
{
"name": "@openid-federation/core",
"version": "0.1.1-alpha.19",
"description": "Core types and functionality of openid federation",
"license": "Apache-2.0",
"exports": "./src/index.ts",
"files": ["dist"],
"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"
}
},
"homepage": "https://github.com/openwallet-foundation-labs/openid-federation-ts/tree/main/packages/core",
"repository": {
"type": "git",
"url": "https://github.com/openwallet-foundation-labs/openid-federation-ts",
"directory": "packages/core"
},
"author": "Animo Solutions",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean --sourcemap"
},
"dependencies": {
"buffer": "catalog:",
"zod": "catalog:"
},
"devDependencies": {
"nock": "catalog:",
"tsup": "catalog:"
}
}