UNPKG

baseai

Version:

The Web AI Framework Dev - BaseAI.dev

116 lines 3.22 kB
{ "name": "baseai", "description": "The Web AI Framework Dev - BaseAI.dev", "version": "0.9.43", "license": "UNLICENSED", "type": "module", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "bin": { "baseai": "bin/baseai.js" }, "author": { "name": "Langbase", "url": "https://BaseAI.dev" }, "repository": { "type": "git", "url": "https://github.com/LangbaseInc/baseai.git", "directory": "packages/cli" }, "bugs": { "url": "https://github.com/LangbaseInc/baseai/issues" }, "homepage": "https://BaseAI.dev", "files": [ "dist/**" ], "dependencies": { "@antfu/ni": "^0.23.0", "@clack/core": "^0.3.4", "@clack/prompts": "^0.7.0", "@hono/node-server": "^1.13.1", "@hono/zod-openapi": "^0.16.0", "@sindresorhus/slugify": "^2.2.1", "camelcase": "^8.0.0", "chalk": "^5.3.0", "cli-alerts": "^2.0.0", "cli-handle-error": "^4.4.0", "cli-handle-unhandled": "^1.1.1", "cli-meow-help": "^4.0.0", "cli-table3": "^0.6.5", "cli-welcome": "^3.0.0", "compute-cosine-similarity": "^1.1.0", "cosmiconfig": "^9.0.0", "cosmiconfig-typescript-loader": "^5.0.0", "dotenv": "^16.4.5", "execa": "^9.4.0", "fast-glob": "^3.3.2", "figures": "^6.1.0", "get-package-json-file": "^2.0.0", "hono": "^4.5.11", "js-tiktoken": "^1.0.14", "log-symbols": "^7.0.0", "lowdb": "^7.0.1", "meow": "^13.2.0", "node-fetch": "^3.3.2", "open": "^10.1.0", "openai": "^4.63.0", "p-map": "^7.0.2", "picocolors": "^1.1.0", "prettier": "^3.3.3", "source-map-support": "^0.5.21", "unpdf": "^0.11.0", "uuid": "^10.0.0", "xlsx": "^0.18.5", "zod": "^3.23.8", "zod-error": "^1.5.0", "zod-validation-error": "^3.4.0" }, "devDependencies": { "@types/node": "^22.6.1", "tsup": "^8.3.0", "tsx": "^4.19.1", "typescript": "^5.6.2", "vitest": "1.6.0", "@baseai/eslint-config": "0.0.2", "@baseai/tsconfig": "0.0.2" }, "keywords": [ "baseai", "base", "base AI framework", "BaseAI.dev", "composable AI", "AI agents", "AI multi agents", "ai", "llm", "langbase core", "langbase sdk", "baseai", "base ai", "langbase", "langbase.com", "generative AI" ], "scripts": { "build": "tsup", "dev": "tsup --watch", "lint": "eslint \"src/**/*.ts*\"", "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist", "type-check": "tsc --noEmit", "prettier-check": "prettier --check \"./**/*.ts*\"", "test": "pnpm test:node && pnpm test:edge", "#test": "pnpm test:node && pnpm test:edge && pnpm test:ui && pnpm test:e2e", "test:edge": "vitest --config vitest.edge.config.js --run", "test:node": "vitest --config vitest.node.config.js --run", "test:ui": "pnpm test:ui:react", "test:ui:react": "vitest --config vitest.ui.react.config.js --run", "test:e2e": "playwright test", "test:edge:watch": "vitest --config vitest.edge.config.js", "test:node:watch": "vitest --config vitest.node.config.js", "test:ui:react:watch": "vitest --config vitest.ui.react.config.js" } }