-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.57 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
{
"name": "atrium",
"version": "0.1.0",
"private": true,
"description": "Cross-venue portfolio margin for the EVM",
"license": "MIT",
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"pnpm": {
"//supportedArchitectures": "Fetch native binaries (lightningcss, sharp, etc.) for BOTH Linux (CI / WSL) and Windows (local dev). The lockfile was resolved on Linux, so a Windows-native `pnpm dev` was missing lightningcss.win32-x64-msvc.node and every CSS compile 500'd. Listing both keeps node_modules correct on either OS.",
"supportedArchitectures": {
"os": ["current", "linux", "win32"],
"cpu": ["current", "x64", "arm64"]
}
},
"scripts": {
"build": "pnpm -r build",
"dev": "pnpm --filter @atrium/verify dev",
"lint": "pnpm -r lint && cargo fmt --check && cargo clippy --workspace -- -D warnings",
"test": "pnpm -r test && cargo test --workspace && forge test",
"test:e2e": "pnpm --filter @atrium/verify test:e2e",
"kani": "node scripts/run-kani.mjs",
"subgraph:abis": "node scripts/extract-abis.mjs",
"subgraph:build": "pnpm --filter @atrium/subgraph build",
"subgraph:deploy": "pnpm --filter @atrium/subgraph deploy",
"clean": "pnpm -r clean && cargo clean && forge clean"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"eslint-plugin-react-hooks": "^7.1.1",
"prettier": "^3.3.0",
"sharp": "^0.34.0",
"typescript": "^5.6.0"
}
}