-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.62 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.62 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@sphereon/oid4vci-workspace",
"version": "0.18.0",
"description": "OpenID for Verifiable Credentials",
"author": "Sphereon",
"license": "Apache-2.0",
"private": true,
"packageManager": "pnpm@10.8.1",
"workspaces": ["packages/*"],
"scripts": {
"preinstall": "npx only-allow pnpm",
"fix": "pnpm run-s fix:*",
"fix:lint": "biome lint --error-on-warnings",
"fix:prettier": "biome format --write",
"build": "turbo run build",
"test:ci": "vitest run --config vitest.config.mts --coverage",
"test": "turbo run test:vitest",
"test:vitest": "vitest run --config vitest.config.mts --coverage",
"clean": "rimraf --glob **/dist **/.turbo **/.tsup **/coverage **/pnpm-lock.yaml packages/**/node_modules node_modules packages/**/tsconfig.tsbuildinfo",
"publish:latest": "lerna publish --conventional-commits --include-merged-tags --create-release github --yes --dist-tag latest --registry https://registry.npmjs.org",
"publish:next": "lerna publish --conventional-prerelease --force-publish --canary --no-git-tag-version --include-merged-tags --preid next --pre-dist-tag next --yes --registry https://registry.npmjs.org",
"publish:unstable": "lerna publish --conventional-prerelease --force-publish --canary --no-git-tag-version --include-merged-tags --preid unstable --pre-dist-tag unstable --yes --registry https://registry.npmjs.org"
},
"engines": {
"node": ">=20.6",
"pnpm": ">=10"
},
"resolutions": {
"@sphereon/ssi-types": "0.36.1-next.159",
"dcql": "1.0.1",
"node-fetch": "2.6.12",
"typescript": "5.8.3"
},
"prettier": {
"endOfLine": "auto",
"semi": false,
"singleQuote": true,
"printWidth": 150
},
"devDependencies": {
"@swc/core": "^1.11.18",
"@types/debug": "^4.1.12",
"@types/node": "^20.17.30",
"@vitest/coverage-v8": "^3.1.1",
"npm-run-all": "^4.1.5",
"@biomejs/biome": "^1.9.4",
"rimraf": "^5.0.8",
"lerna": "^8.2.2",
"tsup": "^8.4.0",
"turbo": "^2.5.0",
"typescript": "5.8.3",
"vitest": "^3.1.1"
},
"pnpm": {
"patchedDependencies": {
"did-jwt@6.11.6": "patches/did-jwt@6.11.6.patch",
"dcql@1.0.1": "patches/dcql@1.0.1.patch"
}
},
"keywords": [
"Sphereon",
"Verifiable Credentials",
"ARF",
"EUIDW",
"OpenID",
"SIOP",
"SIOPv2",
"Self Issued OpenID Provider",
"OpenId for Verifiable Presentations",
"OpenID for Verifiable Credential Issuance",
"OAuth2",
"SSI",
"OpenID4VCI",
"OpenID4VP",
"OIDC4VCI",
"OIDC4VP",
"OID4VCI",
"OID4VP"
],
"repository": "https://github.com/Sphereon-Opensource/OID4VC"
}