-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.74 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "scaffold-agent",
"version": "0.1.33",
"description": "Interactive CLI to scaffold monorepo projects for onchain AI agents",
"type": "module",
"author": "1clawAI (https://1claw.xyz)",
"repository": {
"type": "git",
"url": "git+https://github.com/1clawAI/scaffold-agent.git"
},
"bugs": {
"url": "https://github.com/1clawAI/scaffold-agent/issues"
},
"homepage": "https://github.com/1clawAI/scaffold-agent#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"bin": {
"scaffold-agent": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/cli.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"scaffold",
"ethereum",
"ai-agent",
"onchain",
"cli",
"monorepo",
"1claw",
"foundry",
"hardhat",
"nextjs",
"shroud"
],
"license": "MIT",
"dependencies": {
"@inquirer/prompts": "^7.0.0",
"chalk": "^5.4.0",
"figlet": "^1.8.0",
"ora": "^8.1.0",
"qrcode-terminal": "^0.12.0",
"viem": "^2.21.0"
},
"devDependencies": {
"@types/figlet": "^1.7.0",
"@types/node": "^22.0.0",
"@types/qrcode-terminal": "^0.12.0",
"tsup": "^8.3.0",
"typescript": "^5.6.0"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "yarn@3.2.3+sha512.f26f951f67de0c6a33ee381e5ff364709c87e70eb5e65c694e4facde3512f1fa80b8679e6ba31ce7d340fbb46f08dd683af9457e240f25a204be7427940d767e"
}