UNPKG

text-db-query-ai

Version:

Secure, intelligent text-to-database query converter with LLM integration for building AI-powered chatbots

100 lines (99 loc) 2.15 kB
{ "name": "text-db-query-ai", "version": "0.0.1", "description": "Secure, intelligent text-to-database query converter with LLM integration for building AI-powered chatbots", "main": "dist/index.js", "types": "dist/index.d.ts", "private": false, "publishConfig": { "access": "public" }, "files": [ "dist", "README.md", "LICENSE", "NOTICE" ], "scripts": { "build": "tsc", "dev": "tsc --watch", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "test:verbose": "jest --verbose", "test:security": "jest tests/security", "test:integration": "jest tests/integration", "lint": "echo 'Linting...'", "prepublishOnly": "npm run build && npm run test" }, "keywords": [ "database", "query", "ai", "llm", "openai", "claude", "chatbot", "text-to-sql", "natural-language", "prisma", "orm", "postgresql", "mysql", "sqlite", "sql-generator" ], "author": "jnkindi", "license": "MIT", "dependencies": { "@anthropic-ai/sdk": "^0.67.0", "openai": "^6.7.0" }, "peerDependencies": { "@prisma/client": "^5.0.0", "mysql2": "^3.0.0", "pg": "^8.0.0", "prisma": "^5.0.0", "sqlite3": "^5.0.0" }, "peerDependenciesMeta": { "prisma": { "optional": true }, "@prisma/client": { "optional": true }, "pg": { "optional": true }, "mysql2": { "optional": true }, "sqlite3": { "optional": true } }, "devDependencies": { "@types/jest": "^29.5.0", "@types/node": "^20.10.0", "@types/pg": "^8.10.9", "jest": "^29.7.0", "pg": "^8.11.0", "prisma": "^5.22.0", "@prisma/client": "^5.22.0", "sqlite3": "^5.1.7", "ts-jest": "^29.1.0", "typescript": "^5.3.0" }, "engines": { "node": ">=16.0.0" }, "repository": { "type": "git", "url": "git+https://github.com/jnkindi/text-db-query-ai.git" }, "homepage": "https://github.com/jnkindi/text-db-query-ai#readme", "bugs": { "url": "https://github.com/jnkindi/text-db-query-ai/issues" } }