-
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.
Merge pull request #109 from Sphereon-Opensource/feature/siop-verifif…
…ier-pnpm2 move to pnpm
- Loading branch information
Showing
376 changed files
with
34,461 additions
and
19,268 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,22 @@ | ||
{ | ||
"packages": ["packages/*"], | ||
"packages": [ | ||
"packages/*" | ||
], | ||
"version": "0.11.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 |
---|---|---|
@@ -1,38 +1,28 @@ | ||
{ | ||
"name": "SSI-SDK-workspace", | ||
"name": "@sphereon/sphereon-sdk.workspace", | ||
"private": true, | ||
"version": "0.10.0", | ||
"description": "Sphereon SSI Typescript SDK (Workspace)", | ||
"version": "0.11.0", | ||
"description": "Sphereon SSI SDK (Workspace)", | ||
"repository": "[email protected]:Sphereon-Opensource/SSI-SDK.git", | ||
"author": "Sphereon <[email protected]>", | ||
"license": "Apache-2.0", | ||
"scripts": { | ||
"preinstall": "yarn global add @veramo/[email protected]", | ||
"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 && pnpm install -g @veramo/[email protected]", | ||
"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 -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", | ||
"publish:latest": "lerna publish --conventional-commits --include-merged-tags --create-release github --yes --dist-tag latest --registry https://registry.npmjs.org", | ||
"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 --force-publish --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" | ||
|
@@ -46,58 +36,31 @@ | |
} | ||
] | ||
}, | ||
"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", | ||
"**/did-jwt-vc": "3.1.3", | ||
"@veramo/url-handler": "4.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" | ||
}, | ||
"devDependencies": { | ||
"@types/jest": "^27.5.2", | ||
"@types/node": "^18.15.11", | ||
"@types/debug": "^4.1.7", | ||
"@types/node": "^16.18.14", | ||
"@typescript-eslint/eslint-plugin": "^5.54.1", | ||
"@typescript-eslint/parser": "^5.54.1", | ||
"@typescript-eslint/eslint-plugin": "^5.59.2", | ||
"@typescript-eslint/parser": "^5.59.2", | ||
"codecov": "^3.8.3", | ||
"cross-fetch": "^3.1.5", | ||
"eslint": "^8.35.0", | ||
"eslint-config-prettier": "^8.7.0", | ||
"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.5.1", | ||
"lerna": "^6.6.1", | ||
"lerna-changelog": "^2.2.0", | ||
"oas-resolver": "^2.5.6", | ||
"openapi-types": "^12.1.0", | ||
"patch-package": "^6.5.1", | ||
"prettier": "^2.8.4", | ||
"prettier": "^2.8.8", | ||
"pretty-quick": "^3.1.3", | ||
"rimraf": "^4.4.0", | ||
"semantic-release": "^19.0.5", | ||
|
@@ -113,5 +76,41 @@ | |
"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", | ||
"@sphereon/ssi-types": "workspace:*", | ||
"@sphereon/ssi-sdk.core": "workspace:*", | ||
"@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
Oops, something went wrong.