-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.43 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.43 KB
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
{
"name": "@real-wagmi/smart-router",
"version": "1.4.6",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/index.mjs",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=16"
},
"scripts": {
"start": "tsup --watch",
"build": "tsup",
"test": "vitest --run",
"coverage": "vitest run --coverage",
"lint": "tsdx lint",
"prepare": "yarn build",
"size": "size-limit",
"analyze": "size-limit --why",
"prettier": "prettier --loglevel silent --write \"*/**/*.{js,ts}\""
},
"repository": "https://github.com/RealWagmi/smart-router.git",
"author": "Wagmi",
"keywords": [
"wagmi",
"ethereum"
],
"devDependencies": {
"@size-limit/preset-small-lib": "^8.2.4",
"@types/async-retry": "^1.4.5",
"@types/debug": "^4.1.8",
"@types/lodash": "^4.14.195",
"@types/stats-lite": "^2.2.0",
"debug": "^4.3.4",
"husky": "^8.0.3",
"size-limit": "^8.2.4",
"tsdx": "^0.14.1",
"tslib": "^2.5.3",
"tsup": "^6.7.0",
"typescript": "^5.3.2",
"vitest": "^0.32.0"
},
"dependencies": {
"@real-wagmi/sdk": "1.4.6",
"@real-wagmi/v3-sdk": "1.4.4",
"async-retry": "^1.3.3",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"lodash": "^4.17.21",
"mnemonist": "^0.38.3",
"stats-lite": "^2.2.0",
"viem": "^1.19.11",
"zod": "^3.22.4"
}
}