UNPKG

@smythos/cli

Version:

SmythOS SRE Command Line Interface

117 lines 3 kB
{ "name": "@smythos/cli", "version": "0.2.21", "description": "SmythOS SRE Command Line Interface", "keywords": [ "smythos", "sre", "cli", "agentic AI", "AI", "LLM", "vector-db" ], "author": "Alaa-eddine KADDOURI", "license": "MIT", "main": "dist/index.cjs", "types": "dist/types/index.d.ts", "bin": { "sre": "dist/index.cjs" }, "exports": { ".": { "import": "./dist/index.cjs", "types": "./dist/types/index.d.ts" } }, "files": [ "dist", "theme.json", "README.md", "CHANGELOG.md" ], "type": "module", "engines": { "node": ">=18.0.0", "npm": ">=8.0.0" }, "repository": { "type": "git", "url": "https://github.com/smythos/sre.git", "directory": "packages/cli" }, "bugs": { "url": "https://github.com/smythos/sre/issues" }, "homepage": "https://github.com/smythos/sre#readme", "oclif": { "bin": "sre", "dirname": "sre", "commands": "./dist/commands", "topicSeparator": " ", "theme": "theme.json", "hooks": { "preparse": "./dist/hooks/preparse.cjs" }, "topics": { "agent": { "description": "Run .smyth agent files" }, "create": { "description": "Create new SmythOS project" }, "update": { "description": "Update CLI and check for updates" } } }, "dependencies": {}, "devDependencies": { "@modelcontextprotocol/sdk": "^1.14.0", "@oclif/core": "^4.3.3", "boxen": "^7.1.1", "chalk": "^5.3.0", "dotenv": "^16.5.0", "express": "^4.21.2", "extract-zip": "^2.0.1", "inquirer": "^9.2.15", "log-update": "^6.1.0", "ora": "^8.2.0", "update-notifier": "^7.0.0", "@oclif/plugin-help": "^6.2.21", "@oclif/test": "^3.1.9", "@rollup/plugin-commonjs": "^28.0.3", "@rollup/plugin-json": "^6.1.0", "@rollup/plugin-node-resolve": "^15.3.1", "@rollup/pluginutils": "^5.1.0", "@types/extract-zip": "^2.0.3", "@types/inquirer": "^9.0.7", "@types/node": "^20.19.0", "@types/update-notifier": "^6.0.8", "cross-env": "^7.0.3", "esbuild": "^0.25.0", "glob": "^11.0.3", "knip": "^5.61.1", "oclif": "^4.19.0", "rollup-plugin-esbuild": "^6.1.1", "rollup-plugin-sourcemaps": "^0.6.3", "rollup-plugin-terser": "^7.0.2", "rollup-plugin-typescript-paths": "^1.5.0", "ts-node": "^10.9.2", "typedoc": "^0.28.5", "typescript": "^5.4.5", "@smythos/sdk": "1.0.20", "@smythos/sre": "1.5.25" }, "scripts": { "build:types": "tsc --emitDeclarationOnly --declaration --outDir dist/types -p tsconfig.dts.json", "build:bundle": "cross-env BUILD=dev rollup -c", "build": "pnpm run build:bundle && pnpm run oclif:manifest", "dev": "rollup -c -w", "lint": "echo 'Lint script not implemented'", "test": "echo 'Test script not implemented'", "oclif:manifest": "oclif manifest", "gen:docs": "typedoc", "knip": "knip" } }