-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 2.93 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 2.93 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
{
"name": "@couchbase-ecosystem/voltagent",
"version": "0.1.0",
"description": "Couchbase vector search and retrieval integration for VoltAgent",
"keywords": [
"couchbase",
"voltagent",
"vector-search",
"rag",
"ai-agents"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Couchbase-Ecosystem/couchbase-voltagent.git"
},
"bugs": {
"url": "https://github.com/Couchbase-Ecosystem/couchbase-voltagent/issues"
},
"homepage": "https://github.com/Couchbase-Ecosystem/couchbase-voltagent#readme",
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"retriever": [
"dist/retriever.d.ts"
],
"*": [
"dist/index.d.ts"
]
}
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./retriever": {
"import": {
"types": "./dist/retriever.d.ts",
"default": "./dist/retriever.js"
},
"require": {
"types": "./dist/retriever.d.cts",
"default": "./dist/retriever.cjs"
}
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md",
"docs",
"examples"
],
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"build": "tsup",
"check": "npm run lint && npm run typecheck && npm test && npm run build && npm run publint",
"format": "biome format . --write",
"lint": "biome check .",
"publint": "publint --strict --pack=false",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:integration:docker": "bash scripts/run-integration-tests.sh",
"preexample:customer-support": "npm run build",
"example:customer-support": "node docs/examples/customer-support-rag.mjs",
"example:customer-support:docker": "bash scripts/run-customer-support-example.sh",
"preexample:semantic-memory": "npm run build",
"example:semantic-memory": "tsx examples/semantic-memory.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"couchbase": "^4.7.1"
},
"peerDependencies": {
"@voltagent/core": ">=2.4.0 <3"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.5",
"@biomejs/biome": "2.5.10",
"@types/node": "22.20.1",
"@vitest/coverage-v8": "4.1.11",
"@voltagent/core": "2.9.2",
"publint": "0.3.24",
"tsup": "8.5.1",
"tsx": "4.23.12",
"typescript": "6.0.3",
"vitest": "4.1.11"
},
"allowScripts": {
"couchbase@4.7.1": true,
"esbuild@0.27.7": true,
"esbuild@0.28.2": true,
"protobufjs@7.6.5": true
}
}