forked from 0xsequence/sequence.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.15 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
{
"name": "@0xsequence/relayer",
"version": "2.0.10",
"description": "relayer sub-package for Sequence",
"repository": "https://github.com/0xsequence/sequence.js/tree/master/packages/relayer",
"source": "src/index.ts",
"main": "dist/0xsequence-relayer.cjs.js",
"module": "dist/0xsequence-relayer.esm.js",
"author": "Horizon Blockchain Games",
"license": "Apache-2.0",
"scripts": {
"test": "pnpm test:concurrently 'pnpm test:run'",
"test:run": "pnpm test:file tests/**/*.spec.ts",
"test:file": "NODE_OPTIONS='--import tsx' mocha --timeout 60000",
"test:concurrently": "concurrently -k --success first 'pnpm start:hardhat > /dev/null' ",
"start:hardhat": "pnpm hardhat node --port 9547",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@0xsequence/abi": "workspace:*",
"@0xsequence/core": "workspace:*",
"@0xsequence/utils": "workspace:*"
},
"peerDependencies": {
"ethers": ">=6"
},
"devDependencies": {
"@0xsequence/signhub": "workspace:*",
"@0xsequence/tests": "workspace:*",
"@0xsequence/wallet-contracts": "^3.0.1",
"ethers": "^6.13.0"
},
"files": [
"src",
"dist"
]
}