-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.81 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
67
68
{
"name": "@lizard-build/cli",
"version": "4.0.0",
"description": "Lizard CLI — deploy apps, databases and sandboxes to Lizard (lizard.build) from your terminal or your coding agent. Detects Go, Node, Python, Rust, Ruby, PHP, Java and static sites; adds Managed Postgres, Managed Redis and Managed Object Storage in one command.",
"type": "module",
"bin": {
"lizard": "./dist/index.js"
},
"scripts": {
"gen:skills": "node scripts/gen-skills.mjs",
"prepare": "node scripts/gen-skills.mjs",
"prebuild": "node scripts/gen-skills.mjs",
"predev": "node scripts/gen-skills.mjs",
"pretest": "node scripts/gen-skills.mjs",
"pretest:unit": "node scripts/gen-skills.mjs",
"dev": "tsx src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "vitest run test/unit",
"test:integration": "vitest run test/cli.test.ts",
"test:unit": "vitest run test/unit"
},
"keywords": [
"cli",
"deploy",
"deployment",
"paas",
"hosting",
"containers",
"kubernetes",
"postgres",
"redis",
"s3",
"sandbox",
"ai-agent",
"coding-agent",
"devops",
"lizard"
],
"homepage": "https://lizard.build/docs",
"repository": {
"type": "git",
"url": "git+https://github.com/lizard-build/lizard-cli.git"
},
"bugs": {
"url": "https://github.com/lizard-build/lizard-cli/issues"
},
"author": "Lizard Build",
"license": "MIT",
"dependencies": {
"@clack/prompts": "^1.2.0",
"@x402/core": "^2.26.0",
"@x402/evm": "^2.26.0",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"conf": "^15.1.0",
"open": "^10.2.0",
"ora": "^9.3.0",
"viem": "^2.56.5"
},
"devDependencies": {
"@types/node": "^25.6.0",
"execa": "^9.6.1",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
}
}