-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 984 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 984 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
33
34
35
36
{
"name": "arp-module-registry-mvp",
"version": "0.0.0",
"private": true,
"description": "ARP Module Registry — MVP. First on-chain deliverable of the Agent Reputation Protocol.",
"engines": {
"node": ">=20",
"bun": ">=1.2"
},
"workspaces": [
"app",
"contracts",
"sdk"
],
"scripts": {
"demo": "bun scripts/demo.ts",
"dev": "bun --filter app dev",
"build": "bun --filter '*' build",
"test": "bun --filter '*' test",
"lint": "bun --filter '*' lint",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\" --ignore-path .gitignore",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\" --ignore-path .gitignore"
},
"dependencies": {
"@metamask/delegation-core": "^2.2.1",
"@metamask/delegation-deployments": "^1.4.0",
"@metamask/smart-accounts-kit": "^1.6.0"
},
"devDependencies": {
"prettier": "^3.3.3",
"viem": "2.52.0"
},
"overrides": {
"viem": "2.52.0"
}
}