@kitsi/cli 0.0.3 → 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +24 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kitsi/cli",
3
- "version": "0.0.3",
3
+ "version": "0.0.5",
4
4
  "description": "Kitsi: local-first CI engine with a TypeScript DSL",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -16,7 +16,9 @@
16
16
  },
17
17
  "oclif": {
18
18
  "bin": "kitsi",
19
- "binAliases": ["ks"],
19
+ "binAliases": [
20
+ "ks"
21
+ ],
20
22
  "topicSeparator": " ",
21
23
  "commands": {
22
24
  "strategy": "pattern",
@@ -29,8 +31,12 @@
29
31
  "!**/utils.*"
30
32
  ]
31
33
  },
32
- "additionalHelpFlags": ["-h"],
33
- "additionalVersionFlags": ["-V"],
34
+ "additionalHelpFlags": [
35
+ "-h"
36
+ ],
37
+ "additionalVersionFlags": [
38
+ "-V"
39
+ ],
34
40
  "exitCodes": {
35
41
  "invalidArgsSpec": 3,
36
42
  "requiredArgs": 3,
@@ -39,7 +45,11 @@
39
45
  "failedFlagValidation": 3
40
46
  }
41
47
  },
42
- "files": ["dist", "README.md", "LICENSE"],
48
+ "files": [
49
+ "dist",
50
+ "README.md",
51
+ "LICENSE"
52
+ ],
43
53
  "scripts": {
44
54
  "build": "bun run tsc -p tsconfig.build.json",
45
55
  "build:watch": "bun run tsc -p tsconfig.build.json --watch",
@@ -58,7 +68,15 @@
58
68
  "test:coverage": "mkdir -p reports && vitest run --coverage",
59
69
  "prepublishOnly": "bun run clean && bun run build && bun run test"
60
70
  },
61
- "keywords": ["ci", "cd", "pipeline", "typescript", "dsl", "local-first", "docker"],
71
+ "keywords": [
72
+ "ci",
73
+ "cd",
74
+ "pipeline",
75
+ "typescript",
76
+ "dsl",
77
+ "local-first",
78
+ "docker"
79
+ ],
62
80
  "author": "",
63
81
  "license": "MIT",
64
82
  "dependencies": {