forked from synapsecns/sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 3.21 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@synapseprotocol/sdk",
"version": "0.95.1-alpha.66",
"description": "Synapse Protocol's NodeJS SDK.",
"repository": "github.com/synapsecns/sdk",
"author": "synapsecns",
"license": "ISC",
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"files": [
"/dist",
"/LICENSE",
"/README.md",
"/CONTRIBUTING.md",
"/tsconfig.json",
"/package.json"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "ts-patch install -s",
"setup:dev": "yarn install --frozen-lockfile",
"setup": "yarn && yarn -s run typegen",
" -----------": "",
"pretest": "yarn run react:add",
"precoverage:test": "yarn run pretest",
"test": "scripts/sdk-tests test",
"coverage:test": "scripts/sdk-tests coverage test",
"coverage:report": "scripts/sdk-tests coverage report",
"posttest": "yarn run react:remove",
" -----------": "",
"prebuild": "yarn prepare && rm -rf ./dist",
"build": "tsc --project tsconfig.build.json",
"prepublishOnly": "yarn build",
" -----------": "",
"preabigen": "scripts/generate abigen prepare",
"preabigen:compile": "scripts/generate abigen prepare",
"abigen": "scripts/generate abigen download",
"abigen:compile": "scripts/generate abigen compile",
"typegen": "scripts/generate typegen",
"posttypegen": "rm -rf ./abigen",
" -----------": "",
"fixup": "scripts/fixup",
"react:add": "yarn add --frozen-lockfile --dev react@^17.0.0",
"react:remove": "yarn remove --frozen-lockfile react --dev && yarn add --frozen-lockfile --peer react@^17.0.0",
"docs": "typedoc src/index.ts"
},
"dependencies": {
"@ethersproject/abi": "^5.5.0",
"@ethersproject/abstract-signer": "^5.5.0",
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/constants": "^5.5.0",
"@ethersproject/contracts": "^5.5.0",
"@ethersproject/providers": "^5.5.0",
"@ethersproject/transactions": "^5.5.0",
"@ethersproject/units": "^5.5.0",
"@ethersproject/wallet": "^5.5.0",
"@ethersproject/web": "^5.5.1",
"ethers": "^5.5.1",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"node-fetch": "^3.2.6",
"object-hash": "^3.0.0"
},
"devDependencies": {
"@ethereum-waffle/chai": "3.4.4",
"@typechain/ethers-v5": "10.1.0",
"@types/chai-as-promised": "7.1.5",
"@types/chai-things": "0.0.35",
"@types/lodash": "4.14.185",
"@types/lodash-es": "4.17.6",
"@types/mocha": "9.1.1",
"@types/node": "17.0.21",
"@types/object-hash": "2.2.1",
"@types/react": "18.0.21",
"@zoltu/typescript-transformer-append-js-extension": "1.0.1",
"c8": "7.12.0",
"chai": "4.3.6",
"chai-as-promised": "7.1.1",
"chai-things": "0.2.0",
"coveralls": "3.1.1",
"dotenv": "16.0.0",
"mocha": "10.0.0",
"mocha-lcov-reporter": "1.3.0",
"mocha-steps": "1.3.0",
"ts-mocha": "10.0.0",
"ts-node": "10.9.1",
"ts-patch": "2.0.2",
"typechain": "8.1.0",
"typedoc": "^0.23.21",
"typescript": "4.7.4",
"typescript-transform-paths": "3.3.1"
},
"peerDependencies": {
"react": "^17.0.0"
}
}