-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
92 lines (92 loc) · 1.95 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
{
"version": "7.0.3",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=16"
},
"scripts": {
"pre-commit": "yarn format && yarn lint && yarn build",
"pre-push": "yarn test",
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint src",
"format": "prettier --write './src/**/*' './test/**/*'",
"prepare": "husky install",
"size": "size-limit"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint && prettier --write './src/**/*' './test/**/*'"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"keywords": [
"ReNFT",
"NFT",
"Lending",
"Renting",
"ERC721",
"ERC1155",
"721",
"1155",
"cryptocurrencies",
"blockchain",
"ethereum",
"eth"
],
"name": "@renft/sdk",
"author": "reNFT (https://github.com/re-nft)",
"module": "dist/sdk.esm.js",
"repository": {
"type": "git",
"url": "https://github.com/re-nft/sdk.git"
},
"size-limit": [
{
"path": "dist/sdk.cjs.production.min.js",
"limit": "200 KB"
},
{
"path": "dist/sdk.esm.js",
"limit": "100 KB"
}
],
"dependencies": {
"@ethersproject/abstract-signer": ">=5.5.0",
"@ethersproject/address": ">=5.5.0",
"@ethersproject/bignumber": ">=5.5.0",
"@ethersproject/contracts": ">=5.5.0",
"abitype": "^0.8.7",
"react-fast-compare": "3.2.0",
"viem": "0.3.49"
},
"devDependencies": {
"@size-limit/preset-small-lib": "7.0.1",
"@types/chai": "4.2.22",
"chai": "4.3.4",
"husky": "^8.0.2",
"size-limit": "7.0.1",
"tsdx": "0.14.1",
"tslib": "2.3.1",
"typescript": "4.9.5"
},
"resolutions": {
"postcss": "8.3.11",
"glob-parent": "6.0.2",
"ws": "8.2.3",
"normalize-url": "7.0.2",
"node-notifier": "10.0.0"
}
}