forked from 0xsequence/sequence.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.15 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.15 KB
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": "0.43.34",
"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='--loader tsx' mocha --timeout 30000",
"test:concurrently": "concurrently -k --success first 'pnpm start:hardhat > /dev/null' ",
"start:hardhat": "pnpm hardhat node --port 9547",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@0xsequence/abi": "^0.43.34",
"@0xsequence/config": "^0.43.34",
"@0xsequence/network": "^0.43.34",
"@0xsequence/transactions": "^0.43.34",
"@0xsequence/utils": "^0.43.34"
},
"peerDependencies": {
"ethers": ">=5.5 < 6"
},
"devDependencies": {
"@0xsequence/wallet-contracts": "1.10.0",
"ethers": "^5.7.2"
},
"files": [
"src",
"dist"
]
}