-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.68 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.68 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
94
95
96
97
98
99
100
101
102
103
104
{
"name": "uniswap-dev-kit",
"version": "2.1.1",
"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:coverage": "vitest run --coverage",
"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",
"v4",
"hooks",
"defi",
"crypto",
"blockchain"
],
"author": "BootNodeDev",
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"peerDependencies": {
"@tanstack/react-query": "^5",
"react": "^18 || ^19",
"react-dom": "^18 || ^19"
},
"devDependencies": {
"@biomejs/biome": "2.2.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.6",
"@semantic-release/npm": "^12.0.2",
"@semantic-release/release-notes-generator": "^14.1.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@types/node": "^24.3.1",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"gh-pages": "^6.3.0",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.8",
"tsc-alias": "^1.8.16",
"typedoc": "^0.28.12",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"dependencies": {
"@uniswap/permit2-sdk": "^1.4.0",
"@uniswap/sdk-core": "^7.7.2",
"@uniswap/v3-sdk": "^3.25.2",
"@uniswap/v4-sdk": "^1.21.4",
"ethers": "^5.7.2",
"jsbi": "^3.2.5",
"viem": "^2.37.5",
"wagmi": "^2.16.9"
},
"pnpm": {
"overrides": {
"use-sync-external-store": "npm:use-sync-external-store@^1.2.2",
"jsbi": "3.2.5"
},
"peerDependencyRules": {
"ignoreMissing": [
"@testing-library/dom"
]
}
}
}