-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1010 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1010 Bytes
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
{
"name": "opencode-intellisearch",
"version": "0.3.4",
"type": "module",
"module": "index.ts",
"repository": {
"type": "git",
"url": "https://github.com/expert-vision-software/opencode-intellisearch.git"
},
"publisher": "Expert Vision Software",
"author": "Expert Vision Support <support@expertvision.software>",
"bugs": {
"url": "https://github.com/expert-vision-software/opencode-intellisearch/issues",
"email": "support@expertvisionsoftware.com"
},
"license": "MIT",
"files": [
"index.ts",
"plugin.ts",
"assets"
],
"scripts": {
"check": "tsc --noEmit",
"test": "bun test",
"test:watch": "bun test --watch",
"test:e2e": "bun tests/e2e/scripts/test.ts",
"test:e2e:baseline": "bun tests/e2e/scripts/test.ts --set-baseline"
},
"dependencies": {
"@opencode-ai/plugin": "*",
"@opencode-ai/sdk": "^1.2.20"
},
"devDependencies": {
"@types/bun": "latest",
"js-tiktoken": "^1.0.21",
"typescript": "^5.7.0"
}
}