-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.29 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
{
"name": "@tmustier/pi-queue-steer",
"version": "0.2.0",
"description": "Visible steering and follow-up queues with inline editing for Pi.",
"type": "module",
"license": "MIT",
"author": "Thomas Mustier",
"keywords": [
"pi-package",
"pi-extension",
"queue",
"steering",
"follow-up",
"tui"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tmustier/pi-queue-steer.git"
},
"bugs": "https://github.com/tmustier/pi-queue-steer/issues",
"homepage": "https://github.com/tmustier/pi-queue-steer",
"files": [
"index.ts",
"editor-render.ts",
"queue-state.ts",
"queued-input.ts",
"README.md",
"LICENSE",
"CHANGELOG.md",
"docs/validation.md",
"assets/pi-queue-steer-demo.gif"
],
"scripts": {
"check": "tsc --noEmit",
"test": "tsx --test test/*.test.ts",
"ci": "npm run check && npm test"
},
"pi": {
"extensions": [
"index.ts"
]
},
"peerDependencies": {
"@earendil-works/pi-ai": "*",
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*"
},
"devDependencies": {
"@earendil-works/pi-ai": "*",
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*",
"@types/node": "24.12.4",
"tsx": "4.22.1",
"typescript": "5.9.3"
}
}