-
Notifications
You must be signed in to change notification settings - Fork 136
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.63 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.63 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
{
"name": "@veramo/remote-server",
"description": "Express.js module that can expose some agent methods and messaging endpoints",
"version": "7.0.0",
"main": "build/index.js",
"exports": "./build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "tsc",
"extract-api": "node ../cli/bin/veramo.js dev extract-api"
},
"dependencies": {
"@veramo/core-types": "workspace:^",
"@veramo/remote-client": "workspace:^",
"@veramo/utils": "workspace:^",
"debug": "^4.3.3",
"did-resolver": "^5.0.0",
"express": "^4.18.2",
"passport": "^0.6.0",
"passport-http-bearer": "^1.0.1",
"url-parse": "^1.5.4"
},
"devDependencies": {
"@types/debug": "4.1.8",
"@types/express": "4.17.17",
"@types/passport": "1.0.12",
"@types/passport-http-bearer": "1.0.37",
"@types/url-parse": "1.4.8",
"typescript": "5.7.3"
},
"peerDependencies": {
"express": "^4.18.2"
},
"files": [
"build/**/*",
"src/**/*",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/decentralized-identity/veramo.git",
"directory": "packages/remote-server"
},
"author": "Consensys Mesh R&D <hello@veramo.io>",
"contributors": [
"Simonas Karuzas <simonas.karuzas@mesh.xyz>",
"Mircea Nistor <mircea.nistor@mesh.xyz>"
],
"keywords": [
"Veramo",
"DID",
"Verifiable Credential",
"veramo-plugin",
"remote",
"did:web",
"OpenAPI",
"Swagger"
],
"license": "Apache-2.0",
"type": "module",
"moduleDirectories": [
"node_modules",
"src"
]
}