-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (37 loc) · 1.02 KB
/
package.json
File metadata and controls
38 lines (37 loc) · 1.02 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
{
"name": "ethaura",
"version": "0.1.0",
"description": "P256 Account Abstraction with Passkeys - ERC-4337 implementation using secp256r1 signatures",
"keywords": [
"ethereum",
"account-abstraction",
"erc-4337",
"p256",
"secp256r1",
"webauthn",
"passkeys",
"smart-wallet"
],
"author": "ΞTHΛURΛ Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/ethaura.git"
},
"scripts": {
"install:all": "forge install && cd frontend && npm install",
"build": "forge build",
"test": "forge test",
"test:gas": "forge test --gas-report",
"coverage": "forge coverage",
"deploy:sepolia": "forge script script/Deploy.s.sol:DeployScript --rpc-url sepolia --broadcast --verify",
"frontend:dev": "cd frontend && npm run dev",
"frontend:build": "cd frontend && npm run build",
"clean": "forge clean && rm -rf frontend/dist",
"format": "forge fmt"
},
"devDependencies": {},
"engines": {
"node": ">=18.0.0"
}
}