-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.01 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": "@dkmnx/pi-clarify",
"version": "0.2.0",
"description": "Prompt clarification extension for pi coding agent",
"author": "dkmnx",
"repository": "github:dkmnx/pi-clarify",
"homepage": "https://github.com/dkmnx/pi-clarify",
"pi": {
"extensions": [
"./index.ts"
],
"image": "https://raw.githubusercontent.com/dkmnx/pi-clarify/refs/heads/main/assets/sample.png"
},
"keywords": [
"pi-package",
"pi-extension",
"pi-coding-agent",
"pi-clarify",
"extension",
"prompt"
],
"type": "module",
"license": "MIT",
"dependencies": {
"typebox": "^1.1.24"
},
"scripts": {
"test": "node --import tsx index.test.ts",
"typecheck": "tsc --noEmit"
},
"files": [
"index.ts",
"clarify-utils.ts",
"README.md",
"assets/sample.png",
"LICENSE"
],
"devDependencies": {
"@earendil-works/pi-coding-agent": "^0.83.0",
"@earendil-works/pi-tui": "^0.83.0",
"@types/node": "^22.0.0",
"tsx": "^4.22.4",
"typescript": "^5.9.3"
}
}