-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.17 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.17 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
{
"name": "cndactl",
"version": "0.1.0",
"description": "Terminal UI and CLI for Cloud Native Days Austria",
"packageManager": "bun@1.3.10",
"type": "module",
"bin": {
"cndactl": "dist/src/cli.js"
},
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/andreas-taranetz/cndactl.git"
},
"engines": {
"node": ">=22"
},
"scripts": {
"build": "bunx tsc -p tsconfig.json",
"dev": "bun run src/cli.ts",
"prepack": "bun run build",
"prepare": "husky || true",
"publish:dry-run": "bun publish --dry-run",
"publish:release": "bun publish",
"test": "bunx vitest run",
"typecheck": "bunx tsc --noEmit -p tsconfig.json",
"link": "bun link",
"unlink": "bun unlink"
},
"keywords": [
"cloud-native",
"conference",
"cli",
"terminal"
],
"license": "MIT",
"dependencies": {
"commander": "^14.0.3",
"open": "^11.0.0",
"picocolors": "^1.1.1",
"terminal-image": "^4.2.0"
},
"devDependencies": {
"@types/node": "^25.4.0",
"@vitest/coverage-v8": "^4.0.18",
"husky": "^9.1.7",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}