This repository has been archived by the owner on Nov 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
107 lines (107 loc) · 3.46 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
103
104
105
106
107
{
"version": "8.7.0",
"name": "@cere/freeport-sdk",
"license": "Apache-2.0",
"main": "dist/index.js",
"module": "dist/freeport-sdk.esm.js",
"typings": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"default": "./dist/freeport-sdk.esm.js"
},
"./package.json": "./package.json"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"files": [
"dist",
"src"
],
"engines": {
"node": ">=14.17.1"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build && shx cp -r src/abi-types/* dist/abi-types",
"test": "tsdx test --passWithNoTests",
"qa": "yarn ts && yarn lint && yarn codestyle && yarn test",
"fix": "yarn lint --fix && yarn format",
"lint": "eslint '**/*.{js,jsx,ts,tsx}' --quiet",
"format": "prettier '**/*' --write --ignore-unknown --loglevel warn",
"codestyle": "prettier '**/*' --check --ignore-unknown",
"ts": "tsc -p tsconfig.json",
"ts-files": "tsc --listFiles -p tsconfig.json",
"ts-cov": "shx mkdir -p coverage/typescript && typescript-coverage-report -s -t 98 -o coverage/typescript",
"test-cov": "yarn test --coverage",
"prepare": "husky install",
"precommit": "git status && yarn lint-staged",
"size": "size-limit",
"analyze": "size-limit --why",
"typechain": "typechain --target=ethers-v5 --out-dir src/abi-types --always-generate-overloads src/artifacts/*.json",
"update-types": "yarn typechain && yarn format",
"deploy": "yarn update-types && yarn build && np",
"publish:npm": "npm run build && npm publish --access public"
},
"peerDependencies": {
"ethers": "^5.5.2"
},
"devDependencies": {
"@ethersproject/abi": "^5.5.0",
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/providers": "^5.5.1",
"@size-limit/preset-big-lib": "^7.0.3",
"@typechain/ethers-v5": "^8.0.5",
"@types/eslint": "^8.2.0",
"@types/ethereum-protocol": "^1.0.0",
"@types/micromatch": "^4.0.2",
"@types/node": "^16.11.11",
"@types/web3": "1.0.20",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"dotenv": "^14.1.0",
"enquirer": "^2.3.6",
"eslint": "^8.3.0",
"eslint-config-airbnb": "^19.0.1",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-xo-react": "^0.25.0",
"eslint-config-xo-space": "^0.30.0",
"eslint-config-xo-typescript": "^0.47.1",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unicorn": "^39.0.0",
"ethers": "^5.5.2",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"micromatch": "^4.0.4",
"np": "^7.6.0",
"prettier": "^2.5.0",
"shx": "^0.3.3",
"size-limit": "^7.0.3",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typechain": "^6.0.5",
"typescript": "^4.5.2",
"typescript-coverage-report": "^0.6.1"
},
"resolutions": {
"**/@typescript-eslint/eslint-plugin": "^5.5.0",
"**/@typescript-eslint/parser": "^5.5.0",
"**/jest": "^27.4.3",
"**/ts-jest": "^27.0.7",
"**/typescript": "^4.5.2"
},
"dependencies": {
"@biconomy/mexa": "^2.0.25",
"@truffle/hdwallet-provider": "^2.0.10",
"web3": "^1.7.0"
}
}