-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.43 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
64
65
66
67
68
69
70
{
"name": "@aryrabelo/planqueue",
"version": "0.1.1",
"description": "PlanQueue: an OMP harness extension that turns a session-notes panel into a FIFO prompt queue for coding agents, persisted per repo/branch/session.",
"type": "module",
"license": "MIT",
"author": "Ary Rabelo",
"repository": {
"type": "git",
"url": "git+https://github.com/aryrabelo/planqueue.git"
},
"homepage": "https://github.com/aryrabelo/planqueue#readme",
"bugs": {
"url": "https://github.com/aryrabelo/planqueue/issues"
},
"keywords": [
"planqueue",
"prompt-queue",
"omp",
"oh-my-pi",
"pi",
"extension",
"plugin",
"notes",
"coding-agent"
],
"publishConfig": {
"access": "public"
},
"omp": {
"extensions": [
"./src/main.ts"
]
},
"files": [
"src",
"!src/AGENTS.md",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"engines": {
"bun": ">=1.0.0"
},
"scripts": {
"test": "bun test",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"format": "biome check --write ."
},
"dependencies": {
"@aryrabelo/planqueue-core": "^0.1.0"
},
"overrides": {
"@opentelemetry/core": "^2.8.0"
},
"peerDependencies": {
"@oh-my-pi/pi-coding-agent": "^16.0.0",
"@oh-my-pi/pi-tui": "^16.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@oh-my-pi/pi-coding-agent": "^16.4.8",
"@oh-my-pi/pi-tui": "^16.4.8",
"@types/bun": "^1.3.0",
"@types/node": "^22",
"typescript": "^5.6.0",
"zod": "^4.0.0"
}
}