-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 934 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 934 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
39
40
41
42
{
"$schema": "https://json.schemastore.org/package.json",
"name": "opencode-queue",
"version": "0.6.1",
"type": "module",
"description": "Queue OpenCode prompts and slash commands until the agent is idle",
"main": "./index.ts",
"keywords": [
"opencode",
"opencode-plugin",
"plugin",
"queue"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mirsella/opencode-queue.git"
},
"bugs": {
"url": "https://github.com/mirsella/opencode-queue/issues"
},
"homepage": "https://github.com/mirsella/opencode-queue#readme",
"license": "MIT",
"files": [
"index.ts",
"README.md",
"LICENSE"
],
"exports": {
".": "./index.ts"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@opencode-ai/plugin": "latest",
"@opencode-ai/sdk": "latest",
"typescript": "^5.9.3"
}
}