-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.24 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.24 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
{
"name": "lancedb-opencode-pro",
"version": "0.8.3",
"description": "LanceDB-backed long-term memory provider for OpenCode",
"type": "module",
"main": "dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"types": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"opencode",
"plugin",
"memory",
"lancedb"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tryweb/lancedb-opencode-pro.git"
},
"homepage": "https://github.com/tryweb/lancedb-opencode-pro",
"bugs": {
"url": "https://github.com/tryweb/lancedb-opencode-pro/issues"
},
"license": "MIT",
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"build:test": "tsc -p tsconfig.test.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "node --test dist-test/test/**/*.test.js",
"test:foundation": "npm run build:test && node --test dist-test/test/foundation/foundation.test.js",
"test:regression": "npm run build:test && node --test dist-test/test/regression/plugin.test.js",
"test:effectiveness": "npm run test:foundation && npm run test:regression",
"test:retrieval": "npm run build:test && node --test dist-test/test/retrieval/retrieval.test.js",
"benchmark:latency": "npm run build:test && node dist-test/test/benchmark/latency.js",
"benchmark:perf": "npm run build:test && node dist-test/test/benchmark/performance-verify.js",
"test:e2e": "node scripts/e2e-opencode-memory.mjs",
"verify": "npm run typecheck && npm run build:test && npm run test",
"verify:full": "npm run verify && npm run benchmark:latency && npm pack",
"release:check": "npm run verify:full && npm publish --dry-run",
"prepublishOnly": "npm run verify:full"
},
"dependencies": {
"@lancedb/lancedb": "^0.27.2",
"@opencode-ai/plugin": "1.4.7",
"@opencode-ai/sdk": "1.4.7"
},
"devDependencies": {
"@types/node": "^22.13.9",
"typescript": "^5.8.2"
},
"directories": {
"doc": "docs",
"test": "test"
},
"author": ""
}