-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
48 lines (48 loc) · 1.17 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
{
"name": "@curvefi/api",
"version": "2.66.2",
"description": "JavaScript library for curve.fi",
"main": "lib/index.js",
"author": "Macket",
"license": "MIT",
"private": false,
"engines": {
"node": "22"
},
"repository": {
"type": "git",
"url": "git+https://github.com/curvefi/curve-js.git"
},
"bugs": {
"url": "https://github.com/curvefi/curve-js/issues"
},
"scripts": {
"build": "rm -rf lib && tsc -p tsconfig.build.json",
"lint": "eslint src",
"tsc": "tsc -w"
},
"type": "module",
"devDependencies": {
"@babel/eslint-parser": "^7.25.9",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@types/chai": "^5.0.1",
"@types/memoizee": "^0.4.11",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"chai": "^5.1.2",
"eslint": "^9.16.0",
"globals": "^15.13.0",
"mocha": "^11.0.1",
"typescript": "^5.7.2",
"vue-eslint-parser": "^9.4.3"
},
"dependencies": {
"@curvefi/ethcall": "6.0.7",
"bignumber.js": "^9.1.2",
"ethers": "^6.13.4",
"memoizee": "^0.4.17"
}
}