@kaiord/cli 1.0.0 → 3.0.0

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 (3) hide show
  1. package/LICENSE +21 -0
  2. package/dist/bin/kaiord.js +839 -612
  3. package/package.json +21 -21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kaiord/cli",
3
- "version": "1.0.0",
3
+ "version": "3.0.0",
4
4
  "description": "Command-line interface for Kaiord workout file conversion",
5
5
  "type": "module",
6
6
  "bin": {
@@ -11,18 +11,6 @@
11
11
  "README.md",
12
12
  "LICENSE"
13
13
  ],
14
- "scripts": {
15
- "build": "tsup",
16
- "test": "pnpm build && vitest run",
17
- "test:unit": "vitest run --exclude '**/*-{integration,smoke,snapshot}.test.ts'",
18
- "test:integration": "pnpm build && vitest run src/commands/convert-integration.test.ts src/commands/validate-integration.test.ts",
19
- "test:smoke": "pnpm build && vitest run src/tests/cli-smoke.test.ts",
20
- "test:watch": "vitest",
21
- "dev": "tsx src/bin/kaiord.ts",
22
- "prebuild": "echo 'Building CLI...'",
23
- "prepublishOnly": "pnpm build && pnpm test",
24
- "check-licenses": "license-checker --onlyAllow 'MIT;Apache-2.0;BSD;BSD-2-Clause;BSD-3-Clause;ISC' --production"
25
- },
26
14
  "keywords": [
27
15
  "kaiord",
28
16
  "fit",
@@ -49,23 +37,35 @@
49
37
  "access": "public"
50
38
  },
51
39
  "dependencies": {
52
- "@kaiord/core": "^1.0.0",
53
40
  "chalk": "^5.3.0",
54
- "glob": "^10.3.10",
55
- "ora": "^8.0.1",
41
+ "glob": ">=11.1.0",
42
+ "ora": "^9.1.0",
56
43
  "winston": "^3.11.0",
57
- "yargs": "^17.7.2",
58
- "zod": "^3.22.4"
44
+ "yargs": "^18.0.0",
45
+ "zod": "^3.22.4",
46
+ "@kaiord/all": "^3.0.0",
47
+ "@kaiord/core": "^3.0.0"
59
48
  },
60
49
  "devDependencies": {
61
50
  "@types/yargs": "^17.0.32",
62
- "execa": "^8.0.1",
51
+ "execa": "^9.6.1",
63
52
  "license-checker": "^25.0.1",
64
53
  "strip-ansi": "^7.1.0",
65
54
  "tmp-promise": "^3.0.3",
66
55
  "tsup": "^8.5.1",
67
56
  "tsx": "^4.7.0",
68
57
  "typescript": "^5.3.3",
69
- "vitest": "^1.2.0"
58
+ "vitest": "^4.0.18"
59
+ },
60
+ "scripts": {
61
+ "build": "tsup",
62
+ "test": "pnpm build && vitest run",
63
+ "test:unit": "vitest run --exclude '**/*-{integration,smoke,snapshot}.test.ts'",
64
+ "test:integration": "pnpm build && vitest run src/commands/convert-integration.test.ts src/commands/validate-integration.test.ts",
65
+ "test:smoke": "pnpm build && vitest run src/tests/cli-smoke.test.ts",
66
+ "test:watch": "vitest",
67
+ "dev": "tsx src/bin/kaiord.ts",
68
+ "prebuild": "echo 'Building CLI...'",
69
+ "check-licenses": "license-checker --onlyAllow 'MIT;Apache-2.0;BSD;BSD-2-Clause;BSD-3-Clause;ISC' --production"
70
70
  }
71
- }
71
+ }