-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 804 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 804 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
{
"name": "pi-xcode",
"version": "0.2.0",
"description": "Pi extension for building, running, and testing Xcode projects",
"type": "module",
"keywords": [
"pi-package"
],
"pi": {
"extensions": [
"./src/index.ts"
]
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check",
"lint:fix": "biome check --fix",
"dead-code": "knip",
"check": "tsc --noEmit && biome check && knip"
},
"peerDependencies": {
"@mariozechner/pi-coding-agent": "*",
"@mariozechner/pi-tui": "*",
"@sinclair/typebox": "*"
},
"devDependencies": {
"@biomejs/biome": "^2.4.8",
"@mariozechner/pi-coding-agent": "*",
"@sinclair/typebox": "*",
"knip": "^6.0.1",
"typescript": "^5.8.0",
"vitest": "^3.1.1"
}
}