-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 783 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 783 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
{
"name": "@narumitw/pi-retry",
"version": "0.1.36",
"description": "Public pi extension that retries empty-detail provider errors and stalled streams.",
"type": "module",
"license": "MIT",
"private": false,
"keywords": [
"pi-package",
"pi-extension",
"pi",
"retry"
],
"files": [
"src",
"README.md",
"LICENSE"
],
"pi": {
"extensions": [
"./src/retry.ts"
]
},
"scripts": {
"check": "biome check . && npm run typecheck",
"format": "biome check --write .",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@biomejs/biome": "2.4.14",
"@mariozechner/pi-coding-agent": "0.73.0",
"typescript": "6.0.3"
},
"repository": {
"type": "git",
"url": "https://github.com/narumiruna/pi-extensions",
"directory": "extensions/pi-retry"
}
}