-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.23 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
{
"name": "credential-eip712",
"version": "1.0.7",
"source": "src/index.ts",
"main": "build/index.js",
"types": "build/index.d.ts",
"veramo": {
"pluginInterfaces": {
"ICredentialIssuerEIP712": "./src/types/ICredentialEIP712.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": "27.4.1",
"@veramo/cli": "3.1.2-next.67",
"eth-sig-util": "^3.0.1",
"jest": "27.5.1",
"ts-jest": "27.1.3",
"typescript": "4.6.2"
},
"files": [
"build/**/*",
"src/**/*",
"README.md",
"plugin.schema.json",
"LICENSE"
],
"dependencies": {
"@veramo/core": "3.1.2-next.67",
"@veramo/utils": "3.1.2-next.67",
"eip-712-types-generation": "^0.1.6",
"ethers": "5.6.1",
"ethr-did-resolver": "^5.0.4"
},
"author": "Nick Reynolds <[email protected]>"
}