forked from nickreynolds/did-comm-starchat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.29 KB
/
package.json
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
{
"name": "@veramo-community/did-comm-brainshare",
"publishConfig": {
"access": "public"
},
"version": "1.1.0",
"source": "src/index.ts",
"main": "build/index.js",
"exports": {
".": "./build/index.js"
},
"types": "build/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc",
"generate-plugin-schema": "pnpm veramo dev generate-plugin-schema",
"start": "veramo server",
"build:watch": "tsc -b --watch",
"test:ci": "pnpm test --coverage=true",
"test": "cross-env NODE_OPTIONS=\"--experimental-vm-modules --experimental-import-meta-resolve\" jest --config=jest.config.mjs",
"test:watch": "pnpm test --watch --verbose",
"clean": "rm -rf tmp && rm database.sqlite && rm -rf build && rm tsconfig.tsbuildinfo",
"release": "semantic-release --debug"
},
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29.4.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/debug": "^4.1.8",
"@types/jest": "29.5.2",
"@types/uuid": "^9.0.2",
"@veramo/cli": "5.5.4-next.23",
"@veramo/core": "5.5.4-next.23",
"@veramo/credential-ld": "5.5.4-next.23",
"@veramo/credential-w3c": "5.5.4-next.23",
"@veramo/data-store": "5.5.4-next.23",
"@veramo/did-jwt": "5.5.4-next.23",
"@veramo/did-manager": "5.5.4-next.23",
"@veramo/did-provider-peer": "5.5.4-next.23",
"@veramo/did-resolver": "5.5.4-next.23",
"@veramo/key-manager": "5.5.4-next.23",
"@veramo/kms-local": "5.5.4-next.23",
"@veramo/remote-server": "5.5.4-next.23",
"cross-env": "^7.0.3",
"did-resolver": "^4.1.0",
"express": "^4.18.2",
"jest": "29.5.0",
"semantic-release": "^22.0.6",
"sqlite3": "^5.1.6",
"ts-jest": "29.1.0",
"typeorm": "^0.3.17",
"typescript": "4.9.4"
},
"files": [
"build/**/*",
"src/**/*",
"README.md",
"plugin.schema.json",
"LICENSE"
],
"dependencies": {
"@veramo/core-types": "5.5.4-next.23",
"@veramo/did-comm": "5.5.4-next.23",
"@veramo/message-handler": "5.5.4-next.23",
"debug": "^4.3.4",
"did-jwt-vc": "^3.2.14",
"dns": "^0.2.2",
"jest-config": "^29.7.0",
"remark": "^15.0.1",
"remark-parse": "^11.0.0",
"unified": "^11.0.4",
"unist-util-visit": "^5.0.0",
"uuid": "^9.0.0"
}
}