forked from 0xSero/open-queue
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.06 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.06 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
{
"name": "@0xsero/open-queue",
"version": "1.0.11",
"description": "Message queue plugin for OpenCode - control message flow with hold/immediate modes",
"keywords": [
"opencode",
"plugin",
"queue",
"message-queue"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"@0xsero/open-queue": "./bin/install.js",
"open-queue": "./bin/install.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"bin",
"README.md",
"command"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"clean": "rm -rf dist",
"test": "npm run build && bun test test/queue.test.mjs"
},
"license": "MIT",
"engines": {
"node": ">=20"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.0.0"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.0.150",
"@opencode-ai/sdk": "^1.0.150",
"@types/node": "^20.14.10",
"typescript": "^5.9.3"
}
}