-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.2 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
{
"name": "@ponderfinance/sdk",
"version": "0.1.63",
"description": "SDK for interacting with Ponder DEX",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"clean": "rimraf dist",
"prepublishOnly": "pnpm typecheck && pnpm build"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"dependencies": {
"@ponderfinance/dex": "^0.1.40",
"@tanstack/react-query": "^5.62.2",
"react-query": "^3.39.3",
"viem": "^2.21.51",
"wagmi": "^2.13.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@types/react": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"rimraf": "^5.0.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"keywords": [
"ponder",
"dex",
"defi",
"ethereum"
],
"author": "@taayyohh",
"license": "MIT",
"publishConfig": {
"access": "public"
}
}