|
| 1 | +{ |
| 2 | + "name": "@langbase/cli", |
| 3 | + "description": "Langbase CLI", |
| 4 | + "version": "0.0.0", |
| 5 | + "license": "UNLICENSED", |
| 6 | + "type": "module", |
| 7 | + "main": "./dist/index.js", |
| 8 | + "module": "./dist/index.mjs", |
| 9 | + "types": "./dist/index.d.ts", |
| 10 | + "bin": { |
| 11 | + "lb": "dist/index.js" |
| 12 | + }, |
| 13 | + "author": { |
| 14 | + "name": "Langbase", |
| 15 | + "url": "https://langbase.com" |
| 16 | + }, |
| 17 | + "repository": { |
| 18 | + "type": "git", |
| 19 | + "url": "https://github.com/LangbaseInc/components.git", |
| 20 | + "directory": "packages/cli" |
| 21 | + }, |
| 22 | + "bugs": { |
| 23 | + "url": "https://github.com/LangbaseInc/components/issues" |
| 24 | + }, |
| 25 | + "homepage": "https://langbase.com", |
| 26 | + "files": [ |
| 27 | + "dist/**" |
| 28 | + ], |
| 29 | + "scripts": { |
| 30 | + "build": "tsup", |
| 31 | + "dev": "tsup --watch", |
| 32 | + "lint": "eslint \"src/**/*.ts*\"", |
| 33 | + "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist", |
| 34 | + "type-check": "tsc --noEmit", |
| 35 | + "prettier-check": "prettier --check \"./**/*.ts*\"", |
| 36 | + "test": "pnpm test:node && pnpm test:edge", |
| 37 | + "#test": "pnpm test:node && pnpm test:edge && pnpm test:ui && pnpm test:e2e", |
| 38 | + "test:edge": "vitest --config vitest.edge.config.js --run", |
| 39 | + "test:node": "vitest --config vitest.node.config.js --run", |
| 40 | + "test:ui": "pnpm test:ui:react", |
| 41 | + "test:ui:react": "vitest --config vitest.ui.react.config.js --run", |
| 42 | + "test:e2e": "playwright test", |
| 43 | + "test:edge:watch": "vitest --config vitest.edge.config.js", |
| 44 | + "test:node:watch": "vitest --config vitest.node.config.js", |
| 45 | + "test:ui:react:watch": "vitest --config vitest.ui.react.config.js" |
| 46 | + }, |
| 47 | + "dependencies": { |
| 48 | + "@antfu/ni": "^0.23.0", |
| 49 | + "@clack/core": "^0.3.4", |
| 50 | + "@clack/prompts": "^0.7.0", |
| 51 | + "@hono/node-server": "^1.13.1", |
| 52 | + "@hono/zod-openapi": "^0.16.0", |
| 53 | + "@sindresorhus/slugify": "^2.2.1", |
| 54 | + "camelcase": "^8.0.0", |
| 55 | + "chalk": "^5.3.0", |
| 56 | + "cli-alerts": "^2.0.0", |
| 57 | + "cli-handle-error": "^4.4.0", |
| 58 | + "cli-handle-unhandled": "^1.1.1", |
| 59 | + "cli-meow-help": "^4.0.0", |
| 60 | + "cli-table3": "^0.6.5", |
| 61 | + "cli-welcome": "^3.0.0", |
| 62 | + "compute-cosine-similarity": "^1.1.0", |
| 63 | + "cosmiconfig": "^9.0.0", |
| 64 | + "cosmiconfig-typescript-loader": "^5.0.0", |
| 65 | + "dotenv": "^16.4.5", |
| 66 | + "esbuild": "^0.24.2", |
| 67 | + "execa": "^9.4.0", |
| 68 | + "fast-glob": "^3.3.2", |
| 69 | + "figures": "^6.1.0", |
| 70 | + "get-package-json-file": "^2.0.0", |
| 71 | + "hono": "^4.5.11", |
| 72 | + "js-tiktoken": "^1.0.14", |
| 73 | + "log-symbols": "^7.0.0", |
| 74 | + "lowdb": "^7.0.1", |
| 75 | + "meow": "^13.2.0", |
| 76 | + "node-fetch": "^3.3.2", |
| 77 | + "open": "^10.1.0", |
| 78 | + "openai": "^4.63.0", |
| 79 | + "p-map": "^7.0.2", |
| 80 | + "picocolors": "^1.1.0", |
| 81 | + "prettier": "^3.3.3", |
| 82 | + "source-map-support": "^0.5.21", |
| 83 | + "unpdf": "^0.11.0", |
| 84 | + "uuid": "^10.0.0", |
| 85 | + "xlsx": "^0.18.5", |
| 86 | + "zod": "^3.23.8", |
| 87 | + "zod-error": "^1.5.0" |
| 88 | + }, |
| 89 | + "devDependencies": { |
| 90 | + "@langbase/eslint-config": "workspace:*", |
| 91 | + "@langbase/tsconfig": "workspace:*", |
| 92 | + "@types/node": "^22.6.1", |
| 93 | + "tsup": "^8.3.0", |
| 94 | + "tsx": "^4.19.1", |
| 95 | + "typescript": "^5.6.2", |
| 96 | + "vitest": "1.6.0" |
| 97 | + }, |
| 98 | + "keywords": [ |
| 99 | + "langbase", |
| 100 | + "langbase.com", |
| 101 | + "generative AI" |
| 102 | + ] |
| 103 | +} |
0 commit comments