forked from sushiswap/sushiswap-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.52 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
{
"name": "@digitalnative/standard-protocol-sdk",
"license": "MIT",
"version": "0.0.195",
"description": "🛠 An SDK for building applications on top of Standard Protocol.",
"main": "dist/index.js",
"module": "./dist/index.module.js",
"source": "src/index.ts",
"typings": "dist/index.d.ts",
"exports": {
"require": "./dist/index.js",
"default": "./dist/index.modern.js"
},
"files": [
"dist"
],
"repository": "https://github.com/digitalnativeinc/standard-protocol-sdk",
"keywords": [
"standard protocol",
"ethereum",
"sdk"
],
"scripts": {
"lint": "tsdx lint src test",
"build": "microbundle build",
"watch": "microbundle watch",
"test": "tsdx test",
"prepublishOnly": "microbundle build",
"prepare": "husky install && microbundle build",
"prettier": "prettier --write 'src/**/*.ts' 'test/**/*.ts'",
"publish": "yarn build && yarn publish"
},
"dependencies": {
"babel-jest": "^28.1.1",
"big.js": "^6.1.0",
"decimal.js-light": "^2.5.0",
"isomorphic-unfetch": "^3.1.0",
"jsbi": "^3.1.0",
"tiny-invariant": "^1.1.0",
"tiny-warning": "^1.0.3",
"toformat": "^2.0.0"
},
"peerDependencies": {
"@ethersproject/abi": "^5.4.0",
"@ethersproject/abstract-signer": "^5.4.0",
"@ethersproject/address": "^5.4.0",
"@ethersproject/bignumber": "^5.4.0",
"@ethersproject/bytes": "^5.4.0",
"@ethersproject/contracts": "^5.4.0",
"@ethersproject/experimental": "^5.4.0",
"@ethersproject/networks": "^5.4.0",
"@ethersproject/providers": "^5.4.0",
"@ethersproject/signing-key": "^5.4.0",
"@ethersproject/solidity": "^5.4.0",
"@ethersproject/transactions": "^5.4.0",
"eip-712": "^0.4.3"
},
"devDependencies": {
"@ethersproject/abi": "^5.4.0",
"@ethersproject/abstract-signer": "^5.4.0",
"@ethersproject/address": "^5.4.0",
"@ethersproject/bignumber": "^5.4.0",
"@ethersproject/bytes": "^5.4.0",
"@ethersproject/contracts": "^5.4.0",
"@ethersproject/experimental": "^5.4.0",
"@ethersproject/networks": "^5.4.0",
"@ethersproject/providers": "^5.4.0",
"@ethersproject/signing-key": "^5.4.0",
"@ethersproject/solidity": "^5.4.0",
"@ethersproject/transactions": "^5.4.0",
"@types/big.js": "^6.1.0",
"babel-plugin-transform-jsbi-to-bigint": "^1.4.0",
"eip-712": "^0.4.3",
"husky": "^7.0.0",
"microbundle": "^0.14.2",
"seedrandom": "^3.0.5",
"tsdx": "^0.14.1"
},
"engines": {
"node": ">=12"
},
"publishConfig": {
"access": "public"
}
}