@ogment-ai/cli 0.7.0 → 0.8.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.
- package/README.md +59 -0
- package/dist/cli.js +1003 -929
- package/package.json +13 -20
- package/dist/cli.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ogment-ai/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Ogment CLI",
|
|
6
|
+
"homepage": "https://ogment.ai/cli",
|
|
7
|
+
"license": "MIT",
|
|
6
8
|
"repository": {
|
|
7
9
|
"type": "git",
|
|
8
10
|
"url": "git+https://github.com/ogment-ai/ogment.git",
|
|
@@ -30,36 +32,27 @@
|
|
|
30
32
|
"check-types": "oxlint . --type-aware --type-check -A all --tsconfig tsconfig.json",
|
|
31
33
|
"dev": "tsx src/cli.ts",
|
|
32
34
|
"start": "node dist/cli.js",
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"lint": "oxlint -c oxlint.config.ts --fix --type-aware --tsconfig tsconfig.json src test/src test/e2e vitest.config.ts vitest.e2e.config.ts",
|
|
36
|
-
"lint:check": "oxlint -c oxlint.config.ts --type-aware --deny-warnings --report-unused-disable-directives --tsconfig tsconfig.json src test/src test/e2e vitest.config.ts vitest.e2e.config.ts",
|
|
35
|
+
"lint": "oxlint . --fix --type-aware --tsconfig tsconfig.json",
|
|
36
|
+
"lint:check": "oxlint . --type-aware --deny-warnings --report-unused-disable-directives --tsconfig tsconfig.json",
|
|
37
37
|
"lint:ci": "pnpm run lint:check -- --format=github",
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"test": "vitest run -c vitest.config.ts",
|
|
41
|
-
"test:coverage": "vitest run -c vitest.config.ts --coverage",
|
|
42
|
-
"test:e2e": "pnpm run build && vitest run -c vitest.e2e.config.ts",
|
|
43
|
-
"test:changed": "pnpm test -- --changed"
|
|
44
|
-
},
|
|
45
|
-
"dependencies": {
|
|
46
|
-
"@modelcontextprotocol/sdk": "1.25.2",
|
|
47
|
-
"@repo/shared": "*",
|
|
48
|
-
"better-result": "^2.7.0",
|
|
49
|
-
"commander": "^14.0.3",
|
|
50
|
-
"zod": "^4.3.5"
|
|
38
|
+
"test": "pnpm run build && vitest run -c vitest.config.ts",
|
|
39
|
+
"test:coverage": "vitest run -c vitest.config.ts --coverage"
|
|
51
40
|
},
|
|
52
41
|
"devDependencies": {
|
|
42
|
+
"@modelcontextprotocol/sdk": "1.25.2",
|
|
53
43
|
"@repo/eslint-config": "*",
|
|
44
|
+
"@repo/shared": "*",
|
|
54
45
|
"@repo/typescript-config": "*",
|
|
55
46
|
"@types/node": "22.18.12",
|
|
56
47
|
"@vitest/coverage-v8": "^4.0.14",
|
|
57
48
|
"@vitest/ui": "^4.0.14",
|
|
58
|
-
"
|
|
49
|
+
"better-result": "^2.7.0",
|
|
50
|
+
"commander": "^14.0.3",
|
|
59
51
|
"oxlint": "^1.50.0",
|
|
60
52
|
"rolldown": "1.0.0-rc.6",
|
|
61
53
|
"tsx": "^4.21.0",
|
|
62
|
-
"vitest": "^4.0.14"
|
|
54
|
+
"vitest": "^4.0.14",
|
|
55
|
+
"zod": "^4.3.5"
|
|
63
56
|
},
|
|
64
57
|
"engines": {
|
|
65
58
|
"node": ">=22.18.0",
|