-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.21 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.21 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
{
"name": "pi-webfetch",
"version": "0.1.0",
"description": "Web fetch tool extension for the pi coding agent. Fetches URL content as markdown, plain text, or HTML with bounded time and size controls.",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/code-yeongyu/pi-webfetch",
"repository": {
"type": "git",
"url": "git+https://github.com/code-yeongyu/pi-webfetch.git"
},
"keywords": [
"pi",
"pi-mono",
"pi-coding-agent",
"extension",
"webfetch",
"fetch",
"markdown"
],
"pi": {
"extensions": [
"./src/index.ts"
]
},
"scripts": {
"test": "vitest --run",
"test:watch": "vitest",
"typecheck": "tsgo --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"check": "tsgo --noEmit && biome check ."
},
"peerDependencies": {
"@mariozechner/pi-ai": "*",
"@mariozechner/pi-coding-agent": "*",
"@mariozechner/pi-tui": "*",
"typebox": "*"
},
"dependencies": {
"turndown": "^7.2.2"
},
"devDependencies": {
"@biomejs/biome": "2.3.5",
"@types/node": "^22.10.5",
"@types/turndown": "^5.0.5",
"@typescript/native-preview": "^7.0.0-dev.20260120.1",
"typescript": "^5.9.2",
"vitest": "^4.1.5"
},
"engines": {
"node": ">=20.0.0"
}
}