-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.17 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.17 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
{
"name": "langbase",
"version": "0.6.0",
"license": "Apache-2.0",
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist/**"
],
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --external react",
"dev": "tsup src/index.ts --format esm,cjs --watch --dts --external react",
"xdev": "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 && 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": {
"dotenv": "^16.4.5",
"openai": "^4.53.0",
"zod": "^3.23.8",
"zod-validation-error": "^3.3.0"
},
"devDependencies": {
"@edge-runtime/vm": "^4.0.1",
"@langbase/eslint-config": "workspace:*",
"@langbase/tsconfig": "workspace:*",
"@playwright/test": "^1.46.1",
"@types/node": "^20.11.24",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^8.57.0",
"jsdom": "^24.1.0",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"vitest": "1.6.0"
},
"publishConfig": {
"access": "public"
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"engines": {
"node": ">=18"
},
"homepage": "https://langbase.com/docs",
"repository": {
"type": "git",
"url": "git+https://github.com/LangbaseInc/langbase-sdk.git"
},
"bugs": {
"url": "https://github.com/LangbaseInc/langbase-sdk/issues"
},
"keywords": [
"ai",
"llm",
"langbase core",
"langbase sdk",
"baseai",
"base ai",
"langbase",
"langbase.com",
"generative AI"
]
}