-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.26 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.26 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
{
"name": "dazy",
"version": "0.2.7",
"description": "Developer-first terminal UI for Docker management",
"type": "module",
"bin": {
"dazy": "./dist/index.js"
},
"files": [
"dist",
"templates",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bikidsx/dazy.git"
},
"homepage": "https://github.com/bikidsx/dazy#readme",
"bugs": {
"url": "https://github.com/bikidsx/dazy/issues"
},
"scripts": {
"dev": "bun run src/cli/index.ts",
"build": "bun build src/cli/index.ts --outdir dist --target node --format esm",
"test": "bun test",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\""
},
"keywords": ["docker", "cli", "tui", "containers", "devtools", "docker-compose", "templates"],
"author": "bikidsx",
"license": "MIT",
"dependencies": {
"dockerode": "^4.0.2",
"inquirer": "^9.2.12",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"cli-table3": "^0.6.3",
"ora": "^7.0.1",
"date-fns": "^3.0.6",
"yaml": "^2.3.4"
},
"devDependencies": {
"@types/dockerode": "^3.3.23",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.10.6",
"typescript": "^5.3.3",
"prettier": "^3.1.1"
}
}