-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from Sphereon-Opensource/develop
new release
- Loading branch information
Showing
162 changed files
with
23,963 additions
and
11,758 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
EBSI_DEFAULT_REGISTRY="https://api-pilot.ebsi.eu/did-registry/v4" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
module.exports = { | ||
plugins: ['@babel/plugin-transform-modules-commonjs', [ | ||
'@babel/plugin-transform-runtime', | ||
{ | ||
regenerator: true, | ||
}, | ||
]], | ||
presets: [ | ||
['@babel/preset-env', { targets: { node: 'current' } }], | ||
'@babel/preset-typescript' | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,28 @@ | ||
{ | ||
"name": "@sphereon/veramo-BBS-workspace", | ||
"name": "@sphereon/ssi-sdk-ext.workspace", | ||
"private": true, | ||
"version": "0.10.0", | ||
"description": "Sphereon Veramo BBS+ signature support (Workspace)", | ||
"version": "0.10.2", | ||
"description": "Sphereon Crypto Extensions (BBS+/EBSI) signature support (Workspace)", | ||
"repository": "[email protected]:Sphereon-Opensource/veramo-BBS.git", | ||
"author": "Sphereon <[email protected]>", | ||
"license": "Apache-2.0", | ||
"scripts": { | ||
"build": "lerna run build && yarn build:copyfiles && yarn build:schema-api", | ||
"build:schema-api": "lerna run extract-api && lerna run generate-plugin-schema", | ||
"build:copyfiles": "lerna run build:copyfiles", | ||
"preinstall": "npx only-allow pnpm", | ||
"build": "pnpm build:js && pnpm build:copyfiles && pnpm build:api && pnpm build:schema", | ||
"build:js": "pnpm -r --stream build", | ||
"build:api": "pnpm --package=@veramo/cli -c dlx \"pnpm -r --stream extract-api\"", | ||
"build:schema": "pnpm --package=@veramo/cli -c dlx \"pnpm -r --stream generate-plugin-schema\"", | ||
"build:copyfiles": "pnpm -r --stream build:copyfiles", | ||
"bootstrap": "lerna bootstrap", | ||
"test:ci": "jest --config=jest.json", | ||
"test": "jest --verbose --config=jest.json --coverage=true --detectOpenHandles", | ||
"test:watch": "yarn test --watch --verbose", | ||
"test:watch": "pnpm test --watch --verbose", | ||
"test:lint": "eslint . --ext .ts", | ||
"prettier": "prettier --write \"{packages,__tests__,!dist}/**/*.{ts,tsx,js,json,md,yml}\"", | ||
"build-clean": "rimraf ./packages/*/dist ./packages/*/api ./packages/*/node_modules ./packages/*/tsconfig.tsbuildinfo && jest --clearCache", | ||
"build-clean": "rimraf --glob ./packages/*/dist ./packages/*/api ./packages/*/node_modules ./packages/*/tsconfig.tsbuildinfo ./node_modules ./coverage && jest --clearCache", | ||
"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", | ||
"postinstall": "patch-package" | ||
}, | ||
"workspaces": { | ||
"nohoist": [ | ||
"**disabled-replace-by-package-names**" | ||
], | ||
"packages": [ | ||
"./packages/*" | ||
] | ||
"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" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
|
@@ -43,35 +37,40 @@ | |
] | ||
}, | ||
"devDependencies": { | ||
"@microsoft/api-documenter": "^7.21.5", | ||
"@babel/cli": "^7.21.0", | ||
"@babel/core": "^7.21.4", | ||
"@babel/plugin-transform-runtime": "^7.21.4", | ||
"@babel/preset-env": "^7.21.4", | ||
"@babel/preset-typescript": "^7.21.4", | ||
"@babel/runtime": "^7.21.0", | ||
"@microsoft/api-documenter": "^7.21.7", | ||
"@microsoft/api-extractor": "^7.34.4", | ||
"@microsoft/api-extractor-model": "^7.26.4", | ||
"@types/jest": "^29.4.0", | ||
"@types/node": "^18.15.0", | ||
"@types/debug": "^4.1.7", | ||
"@typescript-eslint/eslint-plugin": "^5.54.1", | ||
"@typescript-eslint/parser": "^5.54.1", | ||
"@types/jest": "^29.4.0", | ||
"@types/node": "^18.15.11", | ||
"@typescript-eslint/eslint-plugin": "^5.59.0", | ||
"@typescript-eslint/parser": "^5.59.0", | ||
"codecov": "^3.8.3", | ||
"eslint": "^8.36.0", | ||
"eslint-config-prettier": "^8.7.0", | ||
"eslint": "^8.38.0", | ||
"eslint-config-prettier": "^8.8.0", | ||
"eslint-plugin-eslint-comments": "^3.2.0", | ||
"eslint-plugin-import": "^2.27.5", | ||
"jest": "^29.5.0", | ||
"jest-fetch-mock": "^3.0.3", | ||
"json-schema": "^0.4.0", | ||
"lerna": "^6.5.1", | ||
"lerna": "^6.6.1", | ||
"lerna-changelog": "^2.2.0", | ||
"oas-resolver": "^2.5.6", | ||
"openapi-types": "^12.1.0", | ||
"prettier": "^2.8.4", | ||
"prettier": "^2.8.7", | ||
"pretty-quick": "^3.1.3", | ||
"rimraf": "^4.4.0", | ||
"semantic-release": "^19.0.5", | ||
"ts-jest": "^29.0.5", | ||
"rimraf": "^5.0.0", | ||
"semantic-release": "^21.0.1", | ||
"ts-jest": "^29.1.0", | ||
"ts-json-schema-generator": "^1.2.0", | ||
"ts-node": "^10.9.1", | ||
"typescript": "4.9.5", | ||
"patch-package": "^6.5.1" | ||
"typescript": "4.9.5" | ||
}, | ||
"resolutions": { | ||
"@veramo/core": "4.2.0", | ||
|
@@ -95,9 +94,9 @@ | |
"@veramo/remote-server": "4.2.0", | ||
"@veramo/selective-disclosure": "4.2.0", | ||
"@veramo/url-handler": "4.2.0", | ||
"**/@digitalcredentials/ed25519-verification-key-2020": "3.2.2", | ||
"**/jsonld" : "npm:@digitalcredentials/jsonld@^5.2.1", | ||
"**/isomorphic-webcrypto": "link:./node_modules/@sphereon/isomorphic-webcrypto" | ||
"@digitalcredentials/ed25519-verification-key-2020": "3.2.2", | ||
"jsonld": "npm:@digitalcredentials/jsonld@^5.2.1", | ||
"isomorphic-webcrypto": "link:./node_modules/@sphereon/isomorphic-webcrypto" | ||
}, | ||
"engines": { | ||
"node": ">= 16.0.0" | ||
|
@@ -107,5 +106,10 @@ | |
"semi": false, | ||
"singleQuote": true, | ||
"printWidth": 150 | ||
}, | ||
"pnpm": { | ||
"patchedDependencies": { | ||
"@veramo/[email protected]": "patches/@[email protected]" | ||
} | ||
} | ||
} |
Oops, something went wrong.