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
38 lines (38 loc) · 902 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 902 Bytes
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
{
"name": "@0xsequence/network",
"version": "2.0.0-alpha.1",
"description": "network sub-package for Sequence",
"repository": "https://github.com/0xsequence/sequence.js/tree/master/packages/network",
"source": "src/index.ts",
"main": "dist/0xsequence-network.cjs.js",
"module": "dist/0xsequence-network.esm.js",
"author": "Horizon Blockchain Games",
"license": "Apache-2.0",
"scripts": {
"test": "echo",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@0xsequence/core": "workspace:*",
"@0xsequence/indexer": "workspace:*",
"@0xsequence/relayer": "workspace:*",
"@0xsequence/utils": "workspace:*"
},
"peerDependencies": {
"ethers": ">=6"
},
"devDependencies": {
"ethers": "^6.13.0"
},
"files": [
"src",
"dist",
"constants"
],
"preconstruct": {
"entrypoints": [
"index.ts",
"constants.ts"
]
}
}