-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.81 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.81 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
{
"name": "opencode-betterglob",
"version": "0.1.0",
"description": "Standalone OpenCode plugin that provides an rg-backed glob tool with native-compatible output.",
"repository": {
"type": "git",
"url": "git+https://github.com/dhaern/better-opencode-tools.git",
"directory": "packages/opencode-betterglob"
},
"homepage": "https://github.com/dhaern/better-opencode-tools/tree/main/packages/opencode-betterglob",
"bugs": {
"url": "https://github.com/dhaern/better-opencode-tools/issues"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=22"
},
"license": "MIT",
"keywords": [
"opencode",
"opencode-plugin",
"glob",
"ripgrep",
"tools"
],
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\" && bun build src/index.ts --outdir dist --target node --format esm --external @opencode-ai/plugin --external effect && tsc --emitDeclarationOnly",
"prepack": "bun run build",
"typecheck": "tsc --noEmit",
"test": "bun test",
"lint": "biome lint src package.json README.md biome.json tsconfig.json",
"check": "biome check src package.json README.md biome.json tsconfig.json",
"format": "biome format src package.json README.md biome.json tsconfig.json --write"
},
"dependencies": {
"@opencode-ai/plugin": "^1.4.7",
"effect": "4.0.0-beta.48",
"which": "^6.0.1"
},
"devDependencies": {
"@biomejs/biome": "2.4.11",
"@types/node": "^24.6.1",
"@types/which": "^3.0.4",
"bun-types": "1.3.12",
"typescript": "^5.9.3"
}
}