-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1.18 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
{
"name": "arc-agent-starter",
"version": "0.1.0",
"private": true,
"description": "A forkable Next.js + wagmi/viem starter kit for building autonomous agents on Arc: ERC-8004 identity, x402 payments, builder-code attribution, session keys, and an onchain attestation oracle.",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"setup": "node -e \"const fs=require('fs');if(!fs.existsSync('.env.local')){fs.copyFileSync('.env.example','.env.local');console.log('Created .env.local from .env.example — edit it to override defaults.')}else{console.log('.env.local already exists — skipping.')}console.log('\\nNext: npm run dev → http://localhost:3000')\""
},
"dependencies": {
"@tanstack/react-query": "^5.59.16",
"next": "^14.2.15",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"viem": "^2.21.37",
"wagmi": "^2.12.20"
},
"devDependencies": {
"@types/node": "^20.16.13",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3"
}
}