generated from decentralized-identity/veramo-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.08 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
{
"name": "veramo-plugin",
"version": "1.0.0",
"source": "src/index.ts",
"main": "build/index.js",
"types": "build/index.d.ts",
"veramo": {
"pluginInterfaces": {
"IDidEthrMetaTransactionPlugin": "./src/types/IDidEthrMetaTransactionPlugin.ts"
}
},
"scripts": {
"build": "tsc",
"generate-plugin-schema": "yarn veramo dev generate-plugin-schema",
"start": "veramo server",
"build:watch": "tsc -b --watch",
"test:ci": "jest --config=jest.json",
"test": "jest --config=jest.json --coverage=false",
"test:watch": "yarn test --watch --verbose",
"clean": "rm -rf tmp && rm database.sqlite && rm -rf build && rm tsconfig.tsbuildinfo"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "28.1.6",
"@veramo/cli": "3.1.5",
"jest": "28.1.3",
"ts-jest": "28.0.7",
"typescript": "4.7.4"
},
"files": [
"build/**/*",
"src/**/*",
"README.md",
"plugin.schema.json",
"LICENSE"
],
"dependencies": {
"@veramo/core": "^3.0.0",
"@veramo/did-manager": "^3.0.0",
"@veramo/key-manager": "^3.0.0"
}
}