@ogment-ai/cli 0.10.0 → 0.10.1

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ogment-ai/cli",
3
- "version": "0.10.0",
3
+ "version": "0.10.1",
4
4
  "private": false,
5
5
  "description": "Ogment CLI",
6
6
  "homepage": "https://ogment.ai/cli",
@@ -26,20 +26,20 @@
26
26
  "access": "public"
27
27
  },
28
28
  "scripts": {
29
- "clean": "node -e \"import { rmSync } from 'node:fs'; rmSync('dist', { recursive: true, force: true });\"",
30
29
  "build": "pnpm run clean && rolldown -c",
31
- "prepack": "pnpm run build",
32
- "check-types": "oxlint . --type-aware --type-check -A all --tsconfig tsconfig.json",
30
+ "check-types": "oxlint . --type-check -A all --tsconfig tsconfig.json",
31
+ "clean": "node -e \"import { rmSync } from 'node:fs'; rmSync('dist', { recursive: true, force: true });\"",
33
32
  "dev": "env OGMENT_BASE_URL=http://localhost:3000 tsx src/cli.ts",
34
33
  "dev:prod": "env -u OGMENT_BASE_URL tsx src/cli.ts",
34
+ "lint": "oxlint . --fix --tsconfig tsconfig.json",
35
+ "lint:check": "oxlint . --deny-warnings --report-unused-disable-directives --tsconfig tsconfig.json",
36
+ "prepack": "pnpm run build",
37
+ "prestart": "pnpm run build",
38
+ "prestart:prod": "pnpm run build",
35
39
  "run": "env OGMENT_BASE_URL=http://localhost:3000 node dist/cli.js",
36
40
  "run:prod": "env -u OGMENT_BASE_URL node dist/cli.js",
37
- "prestart": "pnpm run build",
38
41
  "start": "pnpm run run",
39
- "prestart:prod": "pnpm run build",
40
42
  "start:prod": "pnpm run run:prod",
41
- "lint": "oxlint . --fix --type-aware --tsconfig tsconfig.json",
42
- "lint:check": "oxlint . --type-aware --deny-warnings --report-unused-disable-directives --tsconfig tsconfig.json",
43
43
  "test": "pnpm run build && vitest run -c vitest.config.ts",
44
44
  "test:coverage": "vitest run -c vitest.config.ts --coverage"
45
45
  },
@@ -57,7 +57,6 @@
57
57
  "@vitest/ui": "^4.0.14",
58
58
  "better-result": "^2.7.0",
59
59
  "commander": "^14.0.3",
60
- "oxlint": "^1.50.0",
61
60
  "package-json": "^10.0.1",
62
61
  "rolldown": "1.0.0-rc.6",
63
62
  "semver": "^7.7.4",