-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.07 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
{
"name": "pi-create",
"version": "1.0.0",
"description": "Opinionated project scaffolder for pi.dev extensions with full pipeline integration",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist", "skills", "prompts"],
"scripts": {
"build": "tsc",
"test": "vitest run",
"lint": "biome check .",
"format": "biome check --write ."
},
"keywords": ["pi-package", "pi", "scaffold", "scaffolding", "template", "pi-dev", "extension"],
"author": "Vendex",
"license": "MIT",
"pi": {
"extensions": ["./dist/index.js"]
},
"peerDependencies": {
"@earendil-works/pi-ai": "*",
"@earendil-works/pi-agent-core": "*",
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*",
"typebox": "*"
},
"devDependencies": {
"@earendil-works/pi-ai": "latest",
"@earendil-works/pi-agent-core": "latest",
"@earendil-works/pi-coding-agent": "latest",
"@earendil-works/pi-tui": "latest",
"typebox": "latest",
"typescript": "^5.7.0",
"vitest": "^3.1.0",
"@biomejs/biome": "^1.9.0"
}
}