-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 770 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "opencode-waitfor",
"version": "0.1.1",
"description": "opencode plugin: a wait_for tool that polls HTTP/TCP/command targets until ready or timeout.",
"type": "module",
"main": "./dist/index.js",
"exports": { ".": "./dist/index.js" },
"files": ["dist", "README.md", "LICENSE"],
"keywords": ["opencode", "opencode-plugin", "wait", "healthcheck", "poll"],
"license": "MIT",
"dependencies": { "@opencode-ai/plugin": "^1.17.15" },
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.6.0"
},
"scripts": {
"build": "bun build ./src/index.ts --outdir ./dist --target node --format esm --external '@opencode-ai/*'",
"prepublishOnly": "bun run build",
"test": "bun test",
"typecheck": "tsc --noEmit"
}
}