opencode-plugin-search 0.0.2 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +62 -13
- package/dist/index.js +3101 -42
- package/package.json +13 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-plugin-search",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"description": "An OpenCode plugin providing advanced code search capabilities including AST-based structural search using ast-grep.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -11,7 +11,8 @@
|
|
|
11
11
|
"build": "bun build ./src/index.ts --outfile ./dist/index.js --target node",
|
|
12
12
|
"watch": "bun build ./src/index.ts --outfile ./dist/index.js --target node --watch",
|
|
13
13
|
"typecheck": "biome check && tsc --noEmit",
|
|
14
|
-
"auto": "biome check --fix && tsc --noEmit"
|
|
14
|
+
"auto": "biome check --fix && tsc --noEmit",
|
|
15
|
+
"test:pack": "bun pm pack --dry-run"
|
|
15
16
|
},
|
|
16
17
|
"repository": {
|
|
17
18
|
"type": "git",
|
|
@@ -35,16 +36,24 @@
|
|
|
35
36
|
"homepage": "https://github.com/elyzov/opencode-plugin-search#readme",
|
|
36
37
|
"peerDependencies": {
|
|
37
38
|
"@opencode-ai/plugin": "^1.1.19",
|
|
38
|
-
"@opencode-ai/sdk": "^1.1.19"
|
|
39
|
+
"@opencode-ai/sdk": "^1.1.19",
|
|
40
|
+
"playwright": "^1.49.0"
|
|
41
|
+
},
|
|
42
|
+
"peerDependenciesMeta": {
|
|
43
|
+
"playwright": {
|
|
44
|
+
"optional": true
|
|
45
|
+
}
|
|
39
46
|
},
|
|
40
47
|
"devDependencies": {
|
|
41
48
|
"@tsconfig/bun": "^1.0.10",
|
|
42
49
|
"@types/bun": "^1.3.9",
|
|
50
|
+
"@types/js-yaml": "4.0.9",
|
|
43
51
|
"@types/node": "^25.3.0",
|
|
44
52
|
"bun-types": "latest",
|
|
45
53
|
"typescript": "^5.0.0"
|
|
46
54
|
},
|
|
47
55
|
"dependencies": {
|
|
48
|
-
"shescape": "^2.1.8"
|
|
56
|
+
"shescape": "^2.1.8",
|
|
57
|
+
"js-yaml": "^4.1.0"
|
|
49
58
|
}
|
|
50
59
|
}
|