-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.14 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
{
"name": "graveyield-protocol",
"version": "0.1.0",
"private": true,
"description": "Settlement layer for economic finality on-chain. GraveYield Protocol monorepo.",
"homepage": "https://graveyield.xyz",
"repository": {
"type": "git",
"url": "https://github.com/graveyieldprotocol/protocol.git"
},
"license": "Apache-2.0",
"packageManager": "pnpm@9.12.0",
"engines": {
"node": ">=24.0.0",
"pnpm": ">=9.0.0"
},
"scripts": {
"build": "pnpm -r build",
"typecheck": "pnpm -r typecheck",
"lint": "pnpm -r lint",
"test": "pnpm -r test",
"anchor:build": "anchor build",
"anchor:test": "anchor test",
"check:toolchain": "bash ./scripts/check-toolchain.sh",
"fmt:rust": "cargo fmt --all",
"fmt:rust:check": "cargo fmt --all -- --check",
"lint:rust": "cargo clippy --all-targets -- -D warnings"
},
"devDependencies": {
"@types/node": "^24.0.0",
"typescript": "^5.6.0"
},
"pnpm": {
"overrides": {
"@types/node": "^24.0.0",
"@types/bn.js": "^5.1.5"
},
"peerDependencyRules": {
"allowedVersions": {
"@types/node": "^24.0.0"
}
}
}
}