-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 885 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 885 Bytes
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
{
"name": "@clustercost/cli",
"version": "0.1.1",
"description": "Interactive installer for the ClusterCost agent and dashboard.",
"type": "module",
"bin": {
"clustercost": "bin/cli.mjs"
},
"scripts": {
"start": "node ./bin/cli.mjs",
"lint": "eslint .",
"test": "vitest run",
"release": "npm run lint && npm test && npm publish"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"chalk": "^5.3.0",
"ora": "^7.0.1"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"eslint": "^9.9.0",
"globals": "^15.8.0",
"vitest": "^1.6.0"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/JesusPaz/clustercost-cli"
},
"homepage": "https://github.com/JesusPaz/clustercost-cli#readme",
"bugs": {
"url": "https://github.com/JesusPaz/clustercost-cli/issues"
}
}