-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.17 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
{
"name": "veramo-plugin-template",
"version": "1.0.0",
"source": "src/index.ts",
"main": "build/index.js",
"types": "build/index.d.ts",
"type": "module",
"veramo": {
"pluginInterfaces": {
"IMyAgentPlugin": "./src/types/IMyAgentPlugin.ts"
}
},
"scripts": {
"build": "tsc",
"generate-plugin-schema": "yarn veramo dev generate-plugin-schema",
"start": "veramo server",
"build:watch": "tsc -b --watch",
"test:ci": "yarn test --coverage=true",
"test": "cross-env NODE_OPTIONS=\"--experimental-vm-modules\" jest",
"test:watch": "yarn 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/jest": "29.5.12",
"@veramo/cli": "^5.1.2",
"cross-env": "^7.0.3",
"jest": "29.7.0",
"ts-jest": "29.1.2",
"typescript": "5.4.3"
},
"files": [
"build/**/*",
"src/**/*",
"README.md",
"plugin.schema.json",
"LICENSE"
],
"dependencies": {
"@veramo/core-types": "^5.1.2",
"@veramo/did-manager": "^5.1.2",
"@veramo/key-manager": "^5.1.2"
}
}