-
Notifications
You must be signed in to change notification settings - Fork 208
/
Copy pathpackage.json
46 lines (46 loc) · 1.25 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
40
41
42
43
44
45
46
{
"name": "@credo-ts/openid4vc",
"main": "src/index",
"types": "src/index",
"version": "0.5.13",
"files": [
"build"
],
"license": "Apache-2.0",
"publishConfig": {
"main": "build/index",
"types": "build/index",
"access": "public"
},
"homepage": "https://github.com/openwallet-foundation/credo-ts/tree/main/packages/openid4vc",
"repository": {
"type": "git",
"url": "https://github.com/openwallet-foundation/credo-ts",
"directory": "packages/openid4vc"
},
"scripts": {
"build": "pnpm run clean && pnpm run compile",
"clean": "rimraf ./build",
"compile": "tsc -p tsconfig.build.json",
"prepublishOnly": "pnpm run build",
"test": "jest"
},
"dependencies": {
"@credo-ts/core": "workspace:*",
"@sphereon/did-auth-siop": "link:/../../../CODE/OID4VC/packages/siop-oid4vp",
"@sphereon/oid4vc-common": "0.16.1-fix.173",
"@sphereon/ssi-types": "0.30.2-next.135",
"class-transformer": "^0.5.1",
"rxjs": "^7.8.0",
"@animo-id/oid4vci": "0.1.4",
"@animo-id/oauth2": "0.1.4"
},
"devDependencies": {
"@credo-ts/tenants": "workspace:*",
"@types/express": "^4.17.21",
"express": "^4.18.2",
"nock": "^14.0.0-beta.16",
"rimraf": "^4.4.0",
"typescript": "~5.5.2"
}
}