UNPKG

@datastax/ragstack-ai-cli

Version:

DataStax RAGStack CLI

45 lines 1.18 kB
{ "name": "@datastax/ragstack-ai-cli", "description": "DataStax RAGStack CLI", "version": "1.0.0", "license": "BUSL-1.1", "author": { "name": "DataStax" }, "keywords": [ "llm", "ai", "rag", "chain", "embeddings", "vectorstores", "astradb" ], "engines": { "node": ">=18" }, "main": "dist/index.js", "bin": { "ragstack-ai": "dist/index.js" }, "files": [ "/dist" ], "type": "module", "scripts": { "set-lib-version": "node -p \"'/*File auto-generated by package.json script*/\\nexport const LIB_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts", "build": "tsc --b", "start": "yarn run build && node ./dist/index.js", "test": "yarn run -T jest tests", "release:set-version": "yarn -v && yarn version $NEW_VERSION && yarn run set-lib-version", "release:publish": "yarn -v && yarn run build && yarn npm publish --access public" }, "dependencies": { "@types/cross-spawn": "^6.0.6", "@types/prompts": "^2.4.9", "chalk": "^5.3.0", "commander": "^12.0.0", "cross-spawn": "^7.0.3", "detect-package-manager": "^3.0.1" } }