-
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) · 908 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 908 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
{
"name": "pi-task-extension",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit -p tsconfig.json",
"test:build": "rm -rf .test-dist && tsc -p tsconfig.test.json",
"test": "npm run test:build && node --test .test-dist/test/**/*.test.js",
"test:integration": "PI_TASK_GITHUB_INTEGRATION_TESTS=1 npm test",
"check": "npm run typecheck"
},
"pi": {
"extensions": [
"./index.ts"
],
"skills": [
"./skills"
]
},
"peerDependencies": {
"@earendil-works/pi-ai": "*",
"@earendil-works/pi-coding-agent": "*",
"typebox": "*"
},
"devDependencies": {
"@earendil-works/pi-ai": "^0.82.0",
"@earendil-works/pi-coding-agent": "^0.82.0",
"@types/node": "^24.3.0",
"typebox": "^1.1.24",
"typescript": "^5.7.3"
},
"license": "MIT",
"dependencies": {
"yaml": "^2.9.0"
}
}