-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.03 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
{
"name": "dexap",
"version": "0.2.0",
"description": "Decentralized price queries from DEX liquidity pools across multiple EVM chains and protocols",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./tokens": {
"types": "./dist/tokens/index.d.ts",
"import": "./dist/tokens/index.mjs",
"require": "./dist/tokens/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"example:basic": "tsx src/examples/basic.ts",
"example:best-price": "tsx src/examples/best-price.ts",
"example:multi": "tsx src/examples/multi-pairs.ts",
"example:multi-chain": "tsx src/examples/multi-chain-usage.ts",
"example:token-manager": "tsx src/examples/token-manager.ts",
"example:aggregation": "tsx src/examples/aggregation.ts",
"prepublishOnly": "npm run build && npm run test",
"preversion": "npm run test",
"postversion": "git push && git push --tags"
},
"keywords": [
"web3",
"defi",
"dex",
"price",
"aggregator",
"uniswap",
"velodrome",
"aerodrome",
"slipstream",
"ethereum",
"base",
"optimism",
"arbitrum",
"polygon",
"multichain",
"evm",
"viem",
"typescript"
],
"author": "Slava S.",
"repository": {
"type": "git",
"url": "git+https://github.com/slvDev/dexap.git"
},
"bugs": {
"url": "https://github.com/slvDev/dexap/issues"
},
"homepage": "https://github.com/slvDev/dexap#readme",
"engines": {
"node": ">=18.0.0"
},
"license": "MIT",
"peerDependencies": {
"viem": "^2.0.0"
},
"devDependencies": {
"@types/node": "^24.10.1",
"@vitest/coverage-v8": "^4.0.14",
"tsup": "^8.5.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"viem": "^2.39.0",
"vitest": "^4.0.14"
}
}