forked from 0xsequence/sequence.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 927 Bytes
/
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
{
"name": "@0xsequence/signhub",
"version": "2.0.10",
"description": "orchestrates a series of signers, provides visibility into the signing process, and to the signers themselves",
"repository": "https://github.com/0xsequence/sequence.js/tree/master/packages/signhub",
"source": "src/index.ts",
"main": "dist/0xsequence-signhub.cjs.js",
"module": "dist/0xsequence-signhub.esm.js",
"author": "Horizon Blockchain Games",
"license": "Apache-2.0",
"scripts": {
"test": "pnpm test:file tests/**/*.spec.ts",
"test:file": "TS_NODE_PROJECT=../../tsconfig.test.json mocha -r ts-node/register --timeout 30000",
"test:coverage": "nyc pnpm test"
},
"dependencies": {
"@0xsequence/core": "workspace:*",
"ethers": "^6.13.0"
},
"peerDependencies": {},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"nyc": "^15.1.0"
},
"files": [
"src",
"dist"
]
}