forked from balancer/b-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.68 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.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
{
"name": "@balancer/sdk",
"description": "SDK for interacting with the Balancer protocol",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/balancer/b-sdk"
},
"publishConfig": {
"access": "public"
},
"version": "4.2.0",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"files": ["dist/"],
"scripts": {
"build": "tsup",
"format": "biome format --write .",
"lint": "dpdm -T ./src && biome check .",
"check-types": "tsc --noEmit --skipLibCheck",
"test": "vitest dev",
"test:ci": "vitest run",
"changeset": "changeset",
"changeset:release": "pnpm build && changeset publish",
"example": "npx tsx ./examples/lib/executeExample.ts",
"update:deployments": "npx tsx ./scripts/updateDeployments.ts && pnpm format"
},
"dependencies": {
"@balancer-labs/balancer-maths": "0.0.27",
"@types/big.js": "6.2.2",
"big.js": "6.2.2",
"decimal.js-light": "2.5.1",
"viem": "2.27.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/cli": "2.29.1",
"@types/async-retry": "1.4.9",
"@types/node": "22.14.1",
"@viem/anvil": "0.0.10",
"dotenv": "16.5.0",
"dpdm": "3.14.0",
"pino-pretty": "13.0.0",
"ts-node": "10.9.2",
"tsup": "8.4.0",
"typescript": "5.8.3",
"vite": "6.3.0",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.1.1"
},
"packageManager": "pnpm@10.8.1",
"engines": {
"node": ">=18.x"
}
}