@sechroom/cli 2026.6.1 → 2026.6.2-rc.2ab57437
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 +136 -9
- package/dist/index.js +3872 -95
- package/package.json +9 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sechroom/cli",
|
|
3
|
-
"version": "2026.6.
|
|
3
|
+
"version": "2026.6.2-rc.2ab57437",
|
|
4
4
|
"description": "Sechroom CLI — a thin, generated client over the Sechroom HTTP API. An agent/human surface alongside MCP.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
10
|
"url": "git+https://github.com/OcdLimited/sechroom.git",
|
|
11
|
-
"directory": "
|
|
11
|
+
"directory": "frontend/apps/cli"
|
|
12
12
|
},
|
|
13
13
|
"bin": {
|
|
14
14
|
"sechroom": "./dist/index.js"
|
|
@@ -23,13 +23,6 @@
|
|
|
23
23
|
"access": "public",
|
|
24
24
|
"registry": "https://registry.npmjs.org/"
|
|
25
25
|
},
|
|
26
|
-
"scripts": {
|
|
27
|
-
"gen": "openapi-typescript \"${SECHROOM_OPENAPI_URL:-https://app.sechroom.ai/api/openapi/v1.json}\" -o src/generated/api.d.ts",
|
|
28
|
-
"build": "tsup src/index.ts --format esm --target node20 --clean",
|
|
29
|
-
"dev": "tsx src/index.ts",
|
|
30
|
-
"typecheck": "tsc --noEmit",
|
|
31
|
-
"prepublishOnly": "npm run build"
|
|
32
|
-
},
|
|
33
26
|
"dependencies": {
|
|
34
27
|
"commander": "^12.1.0",
|
|
35
28
|
"open": "^10.1.0",
|
|
@@ -41,5 +34,11 @@
|
|
|
41
34
|
"tsup": "^8.3.0",
|
|
42
35
|
"tsx": "^4.19.0",
|
|
43
36
|
"typescript": "^5.6.0"
|
|
37
|
+
},
|
|
38
|
+
"scripts": {
|
|
39
|
+
"gen": "openapi-typescript \"${SECHROOM_OPENAPI_URL:-https://app.sechroom.ai/api/openapi/v1.json}\" -o src/generated/api.d.ts",
|
|
40
|
+
"build": "tsup src/index.ts --format esm --target node20 --clean",
|
|
41
|
+
"dev": "tsx src/index.ts",
|
|
42
|
+
"check-types": "tsc --noEmit"
|
|
44
43
|
}
|
|
45
|
-
}
|
|
44
|
+
}
|