forked from 0xsequence/sequence.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.38 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
{
"name": "@0xsequence/wallet",
"version": "2.0.10",
"description": "wallet sub-package for Sequence",
"repository": "https://github.com/0xsequence/sequence.js/tree/master/packages/wallet",
"source": "src/index.ts",
"main": "dist/0xsequence-wallet.cjs.js",
"module": "dist/0xsequence-wallet.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 300000",
"test:concurrently": "concurrently -k --success first 'pnpm start:hardhat2 > /dev/null'",
"start:hardhat2": "hardhat node --hostname 0.0.0.0 --port 7047 --config ./hardhat2.config.js",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@0xsequence/abi": "workspace:*",
"@0xsequence/core": "workspace:*",
"@0xsequence/network": "workspace:*",
"@0xsequence/signhub": "workspace:*",
"@0xsequence/relayer": "workspace:*",
"@0xsequence/utils": "workspace:*"
},
"peerDependencies": {
"ethers": ">=6"
},
"devDependencies": {
"@0xsequence/ethauth": "^1.0.0",
"@0xsequence/tests": "workspace:*",
"@0xsequence/wallet-contracts": "^3.0.1",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"ethers": "^6.13.0",
"web3": "^1.8.1"
},
"files": [
"src",
"dist"
]
}