forked from trader-xyz/nft-swap-sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.08 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
{
"version": "0.28.0",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"prettier": "prettier --write \"**/*.{ts,tsx,js,json,css,yml,md}\"",
"generate-types": "typechain --out-dir 'src/contracts' --target=ethers-v5 'src/abis/**/*.json'",
"typecheck": "tsc --pretty --noEmit"
},
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "@traderxyz/nft-swap-sdk",
"author": "johnrjj",
"module": "dist/nft-swap-sdk.esm.js",
"size-limit": [
{
"path": "dist/nft-swap-sdk.cjs.production.min.js",
"limit": "300 KB"
},
{
"path": "dist/nft-swap-sdk.esm.js",
"limit": "200 KB"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "7.0.8",
"@typechain/ethers-v5": "^10.0.0",
"@types/lodash": "^4.14.182",
"@types/uuid": "^8.3.4",
"husky": "^7.0.2",
"prettier": "^2.6.2",
"size-limit": "7.0.8",
"tsdx": "^0.14.1",
"tslib": "^2.4.0",
"typechain": "^8.0.0",
"typescript": "^4.6.4"
},
"dependencies": {
"@ethersproject/abi": "^5.6.1",
"@ethersproject/abstract-signer": "^5.6.0",
"@ethersproject/bignumber": "^5.6.0",
"@ethersproject/bytes": "^5.6.1",
"@ethersproject/hash": "^5.6.0",
"@ethersproject/providers": "^5.6.5",
"@ethersproject/wallet": "^5.6.0",
"date-fns": "^2.28.0",
"ethers": "^5.6.5",
"isomorphic-unfetch": "^3.1.0",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"query-string": "^7.1.1",
"tiny-invariant": "^1.2.0",
"tiny-warning": "^1.0.3",
"uuid": "^8.3.2"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}