-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 928 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 928 Bytes
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
{
"name": "robot-id",
"private": true,
"version": "0.1.0",
"description": "robot-id.eth — the neutral ENS protocol layer for robots & autonomous machines",
"license": "MIT",
"workspaces": [
"api",
"sdk",
"intent-sdk",
"ccip-gateway",
"frontend",
"relayer"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"dev": "npm run dev --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"contracts:build": "forge build --root contracts",
"contracts:test": "forge test --root contracts",
"contracts:test:integration": "FOUNDRY_PROFILE=integration forge test --root contracts"
},
"devDependencies": {
"typescript": "^5.6.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
}
}