@instantkom/cli 3.131.0 → 3.133.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 +1 -1
- package/dist/commands/tickets/reply.js +1 -1
- package/npm-shrinkwrap.json +1842 -4212
- package/oclif.manifest.json +1377 -1377
- package/package.json +12 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instantkom/cli",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.133.0",
|
|
4
4
|
"description": "instantKOM CLI (ikm)",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"type": "module",
|
|
@@ -40,21 +40,20 @@
|
|
|
40
40
|
"check:types-sync": "node scripts/check-types-sync.js",
|
|
41
41
|
"check:all": "npm run check:api-coverage && npm run check:mcp-parity && npm run check:openapi-drift && npm run check:types-sync && npm run check:docs-sync && npm run check:frontend-docs-sync && npm run check:cookbook && npm run check:command-coverage && npm run check:exit-codes",
|
|
42
42
|
"packaging:manifests": "node scripts/render-package-manifests.js",
|
|
43
|
-
"test": "vitest run --
|
|
44
|
-
"test:watch": "vitest --
|
|
45
|
-
"test:unit": "vitest run --
|
|
46
|
-
"test:contract": "vitest run --
|
|
47
|
-
"test:integration": "vitest run --
|
|
48
|
-
"test:live": "npm run build && oclif manifest && IKM_CLI_LIVE_TEST=1 vitest run --
|
|
49
|
-
"test:security:live": "npm run build && oclif manifest && IKM_CLI_SECURITY_TEST=1 vitest run --
|
|
50
|
-
"test:e2e": "vitest run --
|
|
51
|
-
"test:coverage": "vitest run --
|
|
43
|
+
"test": "vitest run --config vitest.workspace.ts",
|
|
44
|
+
"test:watch": "vitest --config vitest.workspace.ts",
|
|
45
|
+
"test:unit": "vitest run --config vitest.workspace.ts --project unit",
|
|
46
|
+
"test:contract": "vitest run --config vitest.workspace.ts --project contract",
|
|
47
|
+
"test:integration": "vitest run --config vitest.workspace.ts --project integration",
|
|
48
|
+
"test:live": "npm run build && oclif manifest && IKM_CLI_LIVE_TEST=1 vitest run --config vitest.workspace.ts --project integration",
|
|
49
|
+
"test:security:live": "npm run build && oclif manifest && IKM_CLI_SECURITY_TEST=1 vitest run --config vitest.workspace.ts --project integration src/tests/integration/live-cli-security.test.ts",
|
|
50
|
+
"test:e2e": "vitest run --config vitest.workspace.ts --project e2e",
|
|
51
|
+
"test:coverage": "vitest run --config vitest.workspace.ts --project unit --coverage"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"@oclif/core": "^4",
|
|
55
55
|
"@oclif/plugin-autocomplete": "^3",
|
|
56
56
|
"@oclif/plugin-help": "^6",
|
|
57
|
-
"@oclif/plugin-plugins": "^5",
|
|
58
57
|
"@oclif/plugin-update": "^4.7.39",
|
|
59
58
|
"cli-table3": "^0.6.5",
|
|
60
59
|
"js-yaml": "^4.1.1",
|
|
@@ -65,14 +64,14 @@
|
|
|
65
64
|
"devDependencies": {
|
|
66
65
|
"@types/js-yaml": "^4",
|
|
67
66
|
"@types/node": "^20",
|
|
68
|
-
"@vitest/coverage-v8": "^
|
|
67
|
+
"@vitest/coverage-v8": "^4.1.6",
|
|
69
68
|
"execa": "^9",
|
|
70
69
|
"msw": "^2",
|
|
71
70
|
"oclif": "^4",
|
|
72
71
|
"openapi-typescript": "^7",
|
|
73
72
|
"tsx": "^4",
|
|
74
73
|
"typescript": "^5",
|
|
75
|
-
"vitest": "^
|
|
74
|
+
"vitest": "^4.1.6"
|
|
76
75
|
},
|
|
77
76
|
"oclif": {
|
|
78
77
|
"bin": "ikm",
|
|
@@ -80,7 +79,6 @@
|
|
|
80
79
|
"commands": "./dist/commands",
|
|
81
80
|
"plugins": [
|
|
82
81
|
"@oclif/plugin-help",
|
|
83
|
-
"@oclif/plugin-plugins",
|
|
84
82
|
"@oclif/plugin-autocomplete",
|
|
85
83
|
"@oclif/plugin-update"
|
|
86
84
|
],
|