-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.35 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.35 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
{
"name": "bbctl",
"version": "0.1.0",
"description": "BitBuilder Cloud CLI for multi-tenant infrastructure on bare metal",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "bun build --target=node --outdir=dist ./src/index.ts",
"start": "bun run dist/index.js",
"dev": "bun --watch src/index.ts",
"test": "bun test",
"lint": "eslint . --ext .ts",
"generate-openapi": "bun run scripts/generateOpenApi.ts",
"example": "bun run examples/validate-instance.ts"
},
"author": "BitBuilder.io",
"license": "MIT",
"dependencies": {
"@asteasolutions/zod-to-openapi": "^5.5.0",
"axios": "^1.5.1",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"conf": "^12.0.0",
"inquirer": "^9.2.11",
"ora": "^7.0.1",
"uuid": "^9.0.1",
"zod": "^3.24.4"
},
"devDependencies": {
"bun-types": "latest",
"@types/uuid": "^9.0.5",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.51.0",
"typescript": "^5.2.2"
},
"engines": {
"bun": ">=1.0.0"
},
"workspaces": [
"examples/*"
],
"repository": {
"type": "git",
"url": "https://github.com/bitbuilder-io/bbctl.git"
},
"keywords": [
"infrastructure",
"vyos",
"proxmox",
"virtualization",
"cloud",
"cli"
]
}