-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.11 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
{
"name": "@realvendex/pi-compat",
"version": "1.0.0",
"description": "Pi-native version compatibility checker for pi.dev extensions — detects which pi APIs an extension uses, validates against known version constraints, warns about deprecated/removed APIs, and suggests migration paths.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "vitest run",
"lint": "biome check .",
"lint:fix": "biome check --write ."
},
"keywords": [
"pi-package",
"pi",
"pi-coding-agent",
"pi-extension",
"version-check",
"compatibility",
"extension",
"validation",
"migration"
],
"author": "realvendex",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ZachDreamZ/pi-compat.git"
},
"peerDependencies": {
"@earendil-works/pi-ai": "*",
"@earendil-works/pi-agent-core": "*",
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*",
"typebox": "*"
},
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"typescript": "^5.5.0",
"vitest": "^3.2.0"
}
}