-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.46 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.46 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
{
"name": "aave-sdk",
"version": "0.0.0",
"description": "The quickest way to build on Aave Protocol",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=22",
"pnpm": ">=9.15.4"
},
"scripts": {
"build": "pnpm -r --sort --if-present run build",
"changeset:publish": "pnpm changeset publish",
"changeset:status": "pnpm changeset status",
"changeset:version": "pnpm --filter cli readme && pnpm changeset version",
"check:graphql": "pnpm --filter graphql check",
"clean": "rimraf packages/*/dist",
"dev": "pnpm -r --sort --if-present run build && pnpm -r --parallel --stream --if-present run build --watch",
"lint:fix": "biome check --write",
"lint": "biome check",
"new:package": "NODE_OPTIONS='--import tsx' plop --plopfile=plopfile.ts",
"publish:results": "tsx scripts/publishResults.ts",
"release": "pnpm run build && pnpm changeset publish",
"spec": "vitest --project spec",
"test:cli": "vitest --project cli --passWithNoTests",
"test:client:cache": "vitest --project client packages/client/src/cache.test.ts",
"test:client:ethers": "vitest --project client packages/client/src/ethers.test.ts",
"test:client:thirdweb": "vitest --project client packages/client/src/thirdweb.test.ts",
"test:client:viem": "vitest --project client packages/client/src/viem.test.ts",
"test:client": "vitest --project client",
"test:core": "vitest --project core",
"test:react:swap": "vitest --project react packages/react/src/swap.test.ts",
"test:react:viem": "vitest --project react packages/react/src/viem/*.test.ts",
"test:react": "vitest --project react",
"test:types": "vitest --project types",
"test": "pnpm test:types && pnpm test:core && pnpm test:client && pnpm test:cli && pnpm test:react",
"typecheck:spec": "pnpm --filter spec run typecheck"
},
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^2.2.5",
"@changesets/cli": "^2.29.8",
"@types/node": "^24.0.7",
"@vitest/ui": "^4.1.0",
"jest-extended": "^6.0.0",
"plop": "^4.0.4",
"rimraf": "^6.1.3",
"tsx": "^4.20.3",
"typescript": "^5.9.2",
"vite": "^8.0.0",
"vitest": "^4.1.0"
},
"pnpm": {
"overrides": {
"rollup": "4.59.0",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
},
"packageManager": "[email protected]"
}