-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.25 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.25 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
{
"name": "@roodriigoooo/pi-docket",
"version": "0.4.0",
"description": "Docket: decision queue and evidence bundles for Pi agent work",
"keywords": [
"pi-package",
"pi-extension",
"docket",
"evidence-bundles",
"context",
"coding-agent"
],
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/roodriigoooo/pi-docket.git"
},
"files": [
"extensions",
"docs",
"assets",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"pi": {
"extensions": [
"./extensions/docket.ts"
]
},
"peerDependencies": {
"@mariozechner/pi-ai": "*",
"@mariozechner/pi-coding-agent": "*",
"@mariozechner/pi-tui": "*"
},
"devDependencies": {
"@mariozechner/pi-ai": "*",
"@mariozechner/pi-coding-agent": "*",
"@mariozechner/pi-tui": "*",
"@types/node": "^22.0.0",
"typescript": "^5.9.0"
},
"scripts": {
"check": "tsc --noEmit",
"test": "rm -rf .test-build && tsc -p tsconfig.test.json && node --test .test-build/tests/*.test.js",
"pack:dry": "npm pack --dry-run",
"smoke:help": "pi --no-extensions -e ./extensions/docket.ts --mode json --no-session \"/docket help\""
},
"publishConfig": {
"access": "public"
}
}