-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.68 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.68 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
{
"name": "@bonnard/sdk",
"version": "0.4.7",
"description": "Bonnard SDK - query your semantic layer from any JavaScript or TypeScript app",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./ai": {
"import": "./dist/ai/index.js",
"types": "./dist/ai/index.d.ts"
},
"./ai/vercel": {
"import": "./dist/ai/vercel.js",
"types": "./dist/ai/vercel.d.ts"
},
"./ai/langchain": {
"import": "./dist/ai/langchain.js",
"types": "./dist/ai/langchain.d.ts"
},
"./browser": {
"default": "./dist/bonnard.iife.js"
}
},
"unpkg": "dist/bonnard.iife.js",
"jsdelivr": "dist/bonnard.iife.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc && esbuild src/browser.ts --bundle --format=iife --global-name=Bonnard --outfile=dist/bonnard.iife.js --minify --sourcemap --target=es2020",
"dev": "tsc --watch"
},
"dependencies": {},
"peerDependencies": {
"zod": "^3.0.0",
"@langchain/core": ">=0.2.0"
},
"peerDependenciesMeta": {
"zod": {
"optional": true
},
"@langchain/core": {
"optional": true
}
},
"devDependencies": {
"esbuild": "^0.27.3",
"typescript": "^5.3.3",
"zod": "^3.24.0",
"ai": "^6.0.0",
"@langchain/core": "^1.0.0"
},
"keywords": [
"bonnard",
"semantic-layer",
"analytics",
"mcp",
"cube",
"dashboard",
"metrics",
"ai"
],
"repository": {
"type": "git",
"url": "https://github.com/bonnard-data/bonnard-sdk.git"
},
"license": "MIT",
"engines": {
"node": ">=18.0.0"
}
}