-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.19 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
43
44
45
{
"name": "pi-ask-tool-extension",
"version": "0.2.6",
"description": "Ask tool extension for pi with tabbed questioning and inline note editing",
"repository": {
"type": "git",
"url": "git+https://github.com/devkade/pi-ask-tool.git"
},
"homepage": "https://github.com/devkade/pi-ask-tool#readme",
"bugs": {
"url": "https://github.com/devkade/pi-ask-tool/issues"
},
"type": "module",
"keywords": [
"pi-package"
],
"pi": {
"extensions": [
"./src/index.ts"
]
},
"files": [
"src",
"README.md"
],
"scripts": {
"test": "bun test",
"test:coverage": "bun test --coverage --coverage-reporter=lcov --coverage-reporter=text",
"coverage:check": "node ./scripts/check-coverage.mjs",
"typecheck": "tsc --noEmit",
"check": "npm run typecheck && npm run test:coverage && npm run coverage:check"
},
"peerDependencies": {
"@mariozechner/pi-coding-agent": "*",
"@mariozechner/pi-tui": "*",
"@sinclair/typebox": "*"
},
"devDependencies": {
"@mariozechner/pi-coding-agent": "^0.52.12",
"@mariozechner/pi-tui": "^0.52.12",
"@sinclair/typebox": "^0.34.41",
"bun-types": "^1.3.9",
"typescript": "^5.9.3"
}
}