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
41 lines (41 loc) · 1.48 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.48 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
38
39
40
41
{
"name": "@0xsequence/deployer",
"version": "0.43.34",
"description": "deployer sub-package for Sequence",
"repository": "https://github.com/0xsequence/sequence.js/tree/master/packages/deployer",
"source": "src/index.ts",
"main": "dist/0xsequence-deployer.cjs.js",
"module": "dist/0xsequence-deployer.esm.js",
"author": "Horizon Blockchain Games",
"license": "Apache-2.0",
"scripts": {
"test": "pnpm test:file tests/**/*.spec.ts",
"test:file": "NODE_OPTIONS='--loader tsx' mocha --timeout 30000",
"typecheck": "tsc --noEmit",
"build": "rm -rf src/typings && TS_NODE_PROJECT=../../tsconfig.test.json hardhat clean && pnpm compile-contracts && pnpm gen:typings",
"compile-contracts": "TS_NODE_PROJECT=../../tsconfig.test.json hardhat --max-memory 4096 compile",
"gen:typings": "rm -rf ./src/typings/contracts/* && typechain --target ethers-v5 --out-dir src/typings/contracts './artifacts/contracts/!(build-info)/**/*[^dbg].json'"
},
"dependencies": {
"@0xsequence/utils": "^0.43.34"
},
"peerDependencies": {
"ethers": ">=5.5 < 6",
"@ethersproject/abi": ">= 5.5",
"@ethersproject/providers": ">= 5.5"
},
"devDependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@typechain/ethers-v5": "^10.1.1",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"typechain": "^8.1.1"
},
"files": [
"src",
"dist"
]
}