forked from kaofelix/pi-glm-image-summary
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 937 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 937 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
40
41
42
43
44
{
"name": "pi-vision",
"version": "0.1.0",
"type": "module",
"description": "Pi extension providing a dedicated analyze_image tool with configurable vision models for on-demand image analysis",
"keywords": [
"pi-package",
"vision",
"image",
"ai",
"analyze"
],
"author": "kifirkin",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kifirkin/pi-vision.git"
},
"files": [
"src"
],
"scripts": {
"format": "biome format --write .",
"lint": "biome lint .",
"typecheck": "tsc --noEmit",
"check": "biome check . && tsc --noEmit"
},
"pi": {
"extensions": [
"./src/index.ts"
]
},
"peerDependencies": {
"@mariozechner/pi-ai": "*",
"@mariozechner/pi-coding-agent": "*"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@mariozechner/pi-ai": "^0.51.0",
"@mariozechner/pi-coding-agent": "^0.51.0",
"@types/node": "^25.2.0",
"typescript": "^5.9.3"
}
}