forked from synapsecns/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.71 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
{
"name": "@synapseprotocol/sdk",
"version": "0.94.1",
"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",
"test": "ts-mocha -p test/tsconfig.json",
"test:coverage": "c8 --reports-dir $REPORTS_DIR ts-mocha -p test/tsconfig.json",
"coverage:report": "c8 report --reports-dir $REPORTS_DIR --reporter=text-lcov > $REPORTS_DIR/lcov.info",
"prebuild": "yarn prepare && rm -rf ./dist",
"build": "tsc --project tsconfig.build.json",
"prepublishOnly": "yarn build",
"typegen:all": "yarn -s run abigen",
"posttypegen:all": "yarn -s run typegen",
"abigen": "scripts/abigen.sh",
"typegen": "typechain --target ethers-v5 --out-dir src/internal/gen src/abis/*.json",
"posttypegen": "yarn -s run typegen:clean",
"typegen:clean": "mv src/abis/ERC20.json ./ERC20.json && rm -rf src/abis/*.json && mv ./ERC20.json src/abis/ERC20.json"
},
"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",
"isomorphic-fetch": "^3.0.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@ethereum-waffle/chai": "3.4.4",
"@typechain/ethers-v5": "9.0.0",
"@types/chai-as-promised": "7.1.5",
"@types/chai-things": "0.0.35",
"@types/isomorphic-fetch": "0.0.36",
"@types/lodash": "4.14.180",
"@types/mocha": "9.1.0",
"@types/node": "17.0.21",
"@zoltu/typescript-transformer-append-js-extension": "1.0.1",
"c8": "7.11.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": "9.2.2",
"mocha-lcov-reporter": "1.3.0",
"mocha-steps": "1.3.0",
"ts-mocha": "9.0.2",
"ts-node": "10.7.0",
"ts-patch": "2.0.1",
"typechain": "7.0.1",
"typescript": "4.6.2",
"typescript-transform-paths": "3.3.1"
}
}