-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
195 lines (195 loc) · 7.41 KB
/
package.json
File metadata and controls
195 lines (195 loc) · 7.41 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
{
"name": "@sphereon/sphereon-sdk.workspace",
"private": true,
"version": "0.36.0",
"description": "Sphereon SSI SDK (Workspace)",
"repository": "git@github.com:Sphereon-Opensource/SSI-SDK.git",
"author": "Sphereon <dev@sphereon.com>",
"packageManager": "pnpm@10.22.0",
"workspaces": [
"packages/*"
],
"license": "Apache-2.0",
"scripts": {
"build": "cross-env NODE_OPTIONS=--max-old-space-size=16384 turbo run build",
"build:clean": "lerna clean -y && pnpm install && lerna run build:clean --concurrency 1 && pnpm build:copyfiles && pnpm build:schema",
"build:js": "pnpm -r --stream build",
"build:api": "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": "vitest",
"test": "vitest run --config ./vitest.config.mjs",
"test:watch": "pnpm test --watch --verbose",
"test:lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prettier": "prettier --write \"{packages,__tests__,!dist}/**/*.{ts,tsx,js,json,md,yml}\"",
"build-clean": "rimraf --glob ./packages/*/.tsup ./packages/*/.turbo ./.turbo ./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 --sync-dist-version --create-release github --yes --dist-tag latest --registry https://registry.npmjs.org",
"publish:next": "lerna publish --conventional-prerelease --force-publish --canary --sync-dist-version --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 --sync-dist-version --no-git-tag-version --include-merged-tags --preid unstable --pre-dist-tag unstable --yes --registry https://registry.npmjs.org"
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"main",
{
"name": "beta",
"prerelease": true
}
]
},
"dependencies": {
"@digitalcredentials/jsonld": "^9.0.0",
"@digitalcredentials/jsonld-signatures": "^12.0.1",
"@veramo/core": "4.2.0",
"vite-tsconfig-paths": "^5.1.4"
},
"devDependencies": {
"@anatine/esbuild-decorators": "^0.2.19",
"@babel/plugin-transform-modules-commonjs": "^7.26.3",
"@babel/plugin-transform-runtime": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"@babel/preset-typescript": "^7.27.0",
"@microsoft/api-extractor": "^7.52.3",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.2",
"@swc-node/register": "~1.9.1",
"@swc/core": "^1.11.18",
"@swc/helpers": "^0.5.15",
"@types/debug": "^4.1.12",
"@types/node": "^20.17.1",
"@typescript-eslint/eslint-plugin": "^8.9.0",
"@typescript-eslint/parser": "^8.9.0",
"@vitest/ui": "^3.0.0",
"cross-env": "^7.0.3",
"cross-fetch": "^4.1.0",
"did-jwt": "6.11.6",
"esbuild": "^0.25.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.31.0",
"ethr-did": "2.3.9",
"express": "^4.19.2",
"json-schema": "^0.4.0",
"lerna": "^8.1.6",
"lerna-changelog": "^2.2.0",
"oas-resolver": "^2.5.6",
"openapi-types": "^12.1.3",
"patch-package": "^8.0.0",
"prettier": "^3.3.3",
"pretty-quick": "^3.3.1",
"rimraf": "^4.4.1",
"rollup": "^4.14.0",
"semantic-release": "^19.0.5",
"ts-node": "^10.9.2",
"tsup": "^8.4.0",
"tsx": "^4.19.3",
"turbo": "^2.5.0",
"typescript": "5.8.3",
"vite": "^6.2.2",
"vitest": "^3.0.8"
},
"engines": {
"node": ">= 20.6.0",
"pnpm": ">=10"
},
"prettier": {
"endOfLine": "auto",
"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:*",
"@sphereon/ssi-sdk.oidf-client": "workspace:*",
"@sphereon/pex": "5.0.0-unstable.28",
"@sphereon/pex-models": "^2.3.2",
"@sphereon/kmp-mdoc-core": "0.2.0-SNAPSHOT.26",
"@sphereon/ssi-sdk-ext.kms-local": "workspace:*",
"@sphereon/ssi-sdk-ext.key-manager": "workspace:*",
"@sphereon/ssi-sdk-ext.key-utils": "workspace:*",
"@sphereon/ssi-sdk-ext.did-utils": "workspace:*",
"@sphereon/ssi-sdk-ext.x509-utils": "workspace:*",
"@sphereon/ssi-sdk-ext.jwt-service": "workspace:*",
"@sphereon/ssi-sdk-ext.identifier-resolution": "workspace:*",
"@digitalcredentials/credentials-v2-context": "~0.0.1-beta.0",
"@digitalcredentials/open-badges-context": "^2.1.0",
"@digitalcredentials/ed25519-signature-2020": "~6.0.0",
"@digitalcredentials/ed25519-verification-key-2020": "^4.0.0",
"@digitalcredentials/jsonld": "^9.0.0",
"@digitalcredentials/jsonld-signatures": "^12.0.1",
"@digitalcredentials/rdf-canonize": "^1.0.0",
"@digitalcredentials/vc": "^9.0.1",
"@digitalcredentials/http-client": "^5.0.4",
"@digitalcredentials/x25519-key-agreement-2020-context": "^1.0.0",
"@digitalbazaar/ed25519-signature-2018": "^4.1.0",
"@digitalbazaar/ed25519-verification-key-2018": "^4.0.0",
"@noble/hashes": "1.6.1",
"debug": "^4.3.5",
"dcql": "1.0.1",
"did-jwt": "6.11.6",
"did-jwt-vc": "3.1.3",
"ethr-did": "2.3.9",
"typeorm": "0.3.20",
"@transmute/ed25519-signature-2018": "0.7.0-unstable.82",
"@transmute/ed25519-key-pair": "0.7.0-unstable.82",
"@transmute/security-context": "0.7.0-unstable.82",
"jsonld": "npm:@digitalcredentials/jsonld@^9.0.0",
"node-fetch": "2.7.0",
"typescript": "5.8.3",
"@types/node": "^20.17.1"
},
"patchedDependencies": {
"@veramo/core@4.2.0": "patches/@veramo__core@4.2.0.patch",
"@veramo/data-store@4.2.0": "patches/@veramo__data-store@4.2.0.patch",
"did-jwt@6.11.6": "patches/did-jwt@6.11.6.patch",
"@veramo/credential-w3c@4.2.0": "patches/@veramo__credential-w3c@4.2.0.patch"
},
"ignoredBuiltDependencies": [
"@mattrglobal/node-bbs-signatures"
],
"onlyBuiltDependencies": [
"@scarf/scarf",
"@sphereon/pex",
"@swc/core",
"canvas",
"dtrace-provider",
"esbuild",
"keccak",
"nx",
"secp256k1",
"sodium-native",
"sqlite3"
]
}
}