@sechroom/cli 2026.6.1-rc.0f873d7f

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/README.md +271 -0
  2. package/dist/index.js +4118 -0
  3. package/package.json +44 -0
package/package.json ADDED
@@ -0,0 +1,44 @@
1
+ {
2
+ "name": "@sechroom/cli",
3
+ "version": "2026.6.1-rc.0f873d7f",
4
+ "description": "Sechroom CLI — a thin, generated client over the Sechroom HTTP API. An agent/human surface alongside MCP.",
5
+ "type": "module",
6
+ "license": "UNLICENSED",
7
+ "author": "OCD",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/OcdLimited/sechroom.git",
11
+ "directory": "frontend/apps/cli"
12
+ },
13
+ "bin": {
14
+ "sechroom": "./dist/index.js"
15
+ },
16
+ "files": [
17
+ "dist"
18
+ ],
19
+ "engines": {
20
+ "node": ">=20"
21
+ },
22
+ "publishConfig": {
23
+ "access": "public",
24
+ "registry": "https://registry.npmjs.org/"
25
+ },
26
+ "dependencies": {
27
+ "commander": "^12.1.0",
28
+ "open": "^10.1.0",
29
+ "openapi-fetch": "^0.13.0"
30
+ },
31
+ "devDependencies": {
32
+ "@types/node": "^20.14.0",
33
+ "openapi-typescript": "^7.4.0",
34
+ "tsup": "^8.3.0",
35
+ "tsx": "^4.19.0",
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"
43
+ }
44
+ }