sourcegraph-search-gadget 0.1.0

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.
Files changed (2) hide show
  1. package/dist/index.js +68916 -0
  2. package/package.json +32 -0
package/package.json ADDED
@@ -0,0 +1,32 @@
1
+ {
2
+ "name": "sourcegraph-search-gadget",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "description": "llmist gadgets for exploring GitHub repos via Sourcegraph API",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js"
12
+ }
13
+ },
14
+ "files": [
15
+ "dist"
16
+ ],
17
+ "scripts": {
18
+ "build": "bun build src/index.ts --outdir dist --target node",
19
+ "dev": "bun run src/index.ts",
20
+ "demo": "bun run examples/demo.ts",
21
+ "typecheck": "tsc --noEmit"
22
+ },
23
+ "devDependencies": {
24
+ "@types/bun": "^1.0.0",
25
+ "llmist": ">=8.0.0",
26
+ "typescript": "^5.4.0",
27
+ "zod": "^3.23.0"
28
+ },
29
+ "peerDependencies": {
30
+ "llmist": ">=8.0.0"
31
+ }
32
+ }