-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
19,035 additions
and
15,634 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
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,14 +1,22 @@ | ||
{ | ||
"packages": ["packages/*"], | ||
"packages": [ | ||
"packages/*" | ||
], | ||
"version": "0.10.0", | ||
"npmClient": "yarn", | ||
"npmClient": "pnpm", | ||
"command": { | ||
"publish": { | ||
"allowBranch": ["main", "master"], | ||
"allowBranch": [ | ||
"main", | ||
"master" | ||
], | ||
"conventionalCommits": true, | ||
"gitRemote": "origin", | ||
"message": "chore(release): %s" | ||
} | ||
}, | ||
"useWorkspaces": true | ||
"useWorkspaces": true, | ||
"forceLocal": true, | ||
"sort": true, | ||
"stream": true | ||
} |
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 |
---|---|---|
|
@@ -7,31 +7,22 @@ | |
"author": "Sphereon <[email protected]>", | ||
"license": "Apache-2.0", | ||
"scripts": { | ||
"build": "lerna run build && yarn build:copyfiles && yarn build:schema-api", | ||
"build:clean": "lerna clean -y && lerna bootstrap && lerna run build:clean --concurrency 1 && 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 --glob ./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": [ | ||
"patch-package", | ||
"jsonld1", | ||
"jsonld-signatures1" | ||
], | ||
"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" | ||
|
@@ -45,34 +36,6 @@ | |
} | ||
] | ||
}, | ||
"resolutions": { | ||
"@veramo/cli": "4.2.0", | ||
"@veramo/core": "4.2.0", | ||
"@veramo/credential-w3c": "4.2.0", | ||
"@veramo/data-store": "4.2.0", | ||
"@veramo/did-jwt": "4.2.0", | ||
"@veramo/credential-ld": "4.2.0", | ||
"@veramo/utils": "4.2.0", | ||
"@veramo/did-manager": "4.2.0", | ||
"@veramo/kms-local": "4.2.0", | ||
"@veramo/key-manager": "4.2.0", | ||
"@veramo/credential-eip712": "4.2.0", | ||
"@veramo/did-comm": "4.2.0", | ||
"@veramo/message-handler": "4.2.0", | ||
"@veramo/did-discovery": "4.2.0", | ||
"@veramo/did-provider-ethr": "4.2.0", | ||
"@veramo/did-provider-key": "4.2.0", | ||
"@veramo/did-provider-web": "4.2.0", | ||
"@veramo/did-resolver": "4.2.0", | ||
"@veramo/remote-client": "4.2.0", | ||
"@veramo/remote-server": "4.2.0", | ||
"@veramo/selective-disclosure": "4.2.0", | ||
"@veramo/url-handler": "4.2.0", | ||
"@noble/hashes": "1.2.0", | ||
"**/@mattrglobal/jsonld-signatures-bbs/jsonld": "4.0.1", | ||
"**/jsonld" : "link:./node_modules/@digitalcredentials/jsonld", | ||
"**/isomorphic-webcrypto": "link:./node_modules/@sphereon/isomorphic-webcrypto" | ||
}, | ||
"dependencies": { | ||
"@veramo/core": "4.2.0" | ||
}, | ||
|
@@ -89,6 +52,7 @@ | |
"eslint-plugin-eslint-comments": "^3.2.0", | ||
"eslint-plugin-import": "^2.27.5", | ||
"jest": "^27.5.1", | ||
"jest-environment-node": "27.5.1", | ||
"jest-fetch-mock": "^3.0.3", | ||
"json-schema": "^0.4.0", | ||
"lerna": "^6.6.1", | ||
|
@@ -112,5 +76,39 @@ | |
"semi": false, | ||
"singleQuote": true, | ||
"printWidth": 150 | ||
}, | ||
"pnpm": { | ||
"overrides": { | ||
"@veramo/cli": "4.2.0", | ||
"@veramo/core": "4.2.0", | ||
"@veramo/credential-w3c": "4.2.0", | ||
"@veramo/data-store": "4.2.0", | ||
"@veramo/did-jwt": "4.2.0", | ||
"@veramo/credential-ld": "4.2.0", | ||
"@veramo/utils": "4.2.0", | ||
"@veramo/did-manager": "4.2.0", | ||
"@veramo/kms-local": "4.2.0", | ||
"@veramo/key-manager": "4.2.0", | ||
"@veramo/credential-eip712": "4.2.0", | ||
"@veramo/did-comm": "4.2.0", | ||
"@veramo/message-handler": "4.2.0", | ||
"@veramo/did-discovery": "4.2.0", | ||
"@veramo/did-provider-ethr": "4.2.0", | ||
"@veramo/did-provider-key": "4.2.0", | ||
"@veramo/did-provider-web": "4.2.0", | ||
"@veramo/did-resolver": "4.2.0", | ||
"@veramo/remote-client": "4.2.0", | ||
"@veramo/remote-server": "4.2.0", | ||
"@veramo/selective-disclosure": "4.2.0", | ||
"@veramo/url-handler": "4.2.0", | ||
"@noble/hashes": "1.2.0", | ||
"@mattrglobal/[email protected]>jsonld": "4.0.1", | ||
"jsonld": "link:./node_modules/.pnpm/@[email protected]/node_modules/@digitalcredentials/jsonld", | ||
"isomorphic-webcrypto": "link:./node_modules/@sphereon/isomorphic-webcrypto" | ||
}, | ||
"patchedDependencies": { | ||
"@veramo/[email protected]": "patches/@[email protected]", | ||
"@veramo/[email protected]": "patches/@[email protected]" | ||
} | ||
} | ||
} |
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
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
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
Oops, something went wrong.