-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
68 lines (67 loc) · 2.42 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@sphereon/oid4vci-workspace",
"version": "0.11.0",
"description": "OpenID for Verifiable Credentials",
"author": "Sphereon",
"license": "Apache-2.0",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"fix": "pnpm run-s fix:*",
"fix:lint": "eslint . --fix --ext .ts",
"fix:prettier": "prettier --write \"{packages,__tests__,!dist}/**/*.{ts,tsx,js,json,md,yml}\"",
"build": "pnpm -r --stream build",
"build:clean": "lerna clean -y && pnpm install && lerna run build:clean --concurrency 1",
"test:ci": "jest --config=jest.json && jest --config=packages/siop-oid4vp/jest.json",
"test": "jest --verbose --config=jest.json --coverage=true --detectOpenHandles && jest --verbose --config=packages/siop-oid4vp/jest.json --coverage=true --detectOpenHandles",
"clean": "rimraf --glob **/dist **/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": ">=18"
},
"resolutions": {
"node-fetch": "2.6.12"
},
"prettier": {
"endOfLine": "auto",
"semi": false,
"singleQuote": true,
"printWidth": 150
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.12",
"@types/node": "^18.19.39",
"jest": "^29.7.0",
"lerna": "^8.1.6",
"lerna-changelog": "^2.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.2",
"rimraf": "^5.0.8",
"ts-jest": "^29.1.5",
"typescript": "5.4.5"
},
"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"
]
}