generated from decentralized-identity/veramo-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.48 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
{
"name": "aries-rfcs-veramo-plugin",
"version": "1.0.0",
"source": "src/index.ts",
"main": "build/index.js",
"types": "build/index.d.ts",
"type": "commonjs",
"veramo": {
"pluginInterfaces": {
"IAriesRFCsPlugin": "./src/types/IAriesRFCsPlugin.ts"
}
},
"scripts": {
"build": "tsc",
"generate-plugin-schema": "veramo dev generate-plugin-schema",
"start": "veramo server",
"build:watch": "tsc -b --watch",
"test:ci": "jest test --coverage=true",
"test": "cross-env NODE_OPTIONS=\"--experimental-vm-modules\" jest",
"test:watch": "npm run test --watch --verbose",
"clean": "rm -rf tmp && rm database.sqlite && rm -rf build && rm tsconfig.tsbuildinfo"
},
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29.4.3",
"@types/debug": "^4.1.7",
"@types/jest": "29.4.0",
"@types/uuid": "^9.0.1",
"@veramo/cli": "4.1.2",
"cross-env": "^7.0.3",
"jest": "29.4.3",
"ts-jest": "29.0.5",
"typescript": "4.9.5"
},
"files": [
"build/**/*",
"src/**/*",
"README.md",
"plugin.schema.json",
"LICENSE"
],
"dependencies": {
"@types/node": "^18.15.11",
"@veramo/core": "^4.2.0",
"@veramo/data-store": "^4.2.0",
"@veramo/did-manager": "^4.2.0",
"@veramo/did-resolver": "^4.2.0",
"@veramo/key-manager": "^4.2.0",
"@veramo/kms-local": "^4.2.0",
"@veramo/remote-client": "^4.3.0",
"@veramo/remote-server": "^4.3.0",
"crypto": "^1.0.1",
"xstate": "^4.37.1"
}
}