-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 2.96 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 2.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "baseai",
"description": "The Web AI Framework Dev - BaseAI.dev",
"version": "0.9.41",
"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/**"
],
"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"
},
"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": {
"@baseai/eslint-config": "workspace:*",
"@baseai/tsconfig": "workspace:*",
"@types/node": "^22.6.1",
"tsup": "^8.3.0",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"vitest": "1.6.0"
},
"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"
]
}