-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.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
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
{
"name": "uniswap-dev-kit",
"version": "1.0.11",
"description": "A modern TypeScript library for integrating Uniswap into your dapp.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"files": [
"dist/**/*"
],
"scripts": {
"dev": "tsc --watch",
"build": "npm run clean && tsc && tsc-alias",
"format": "biome format",
"lint": "biome check",
"lint:fix": "biome check --write",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build",
"prepare": "husky",
"clean": "rimraf dist",
"check": "npm run lint && npm run test",
"docs": "typedoc --options typedoc.json",
"docs:publish": "npm run docs && gh-pages -d docs",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/BootNodeDev/uni-dev-kit.git"
},
"keywords": [
"uniswap",
"typescript",
"v3",
"v4",
"hooks",
"defi",
"crypto",
"blockchain"
],
"author": "BootNodeDev",
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"peerDependencies": {
"@tanstack/react-query": "^5.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.2",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^14.2.1",
"@types/node": "^22.15.17",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@vitest/ui": "^3.1.3",
"gh-pages": "^6.3.0",
"husky": "^9.0.11",
"jsdom": "^26.1.0",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.4",
"tsc-alias": "^1.8.16",
"typedoc": "^0.28.4",
"typescript": "^5.8.3",
"vitest": "^3.1.3"
},
"dependencies": {
"@uniswap/permit2-sdk": "^1.3.1",
"@uniswap/router-sdk": "^2.0.3",
"@uniswap/sdk-core": "^7.7.2",
"@uniswap/universal-router-sdk": "^4.19.5",
"@uniswap/v3-sdk": "^3.25.2",
"@uniswap/v4-sdk": "^1.21.4",
"ethers": "^5.7.2",
"jsbi": "^3.2.5",
"viem": "^2.29.2",
"wagmi": "^2.15.2"
}
}