-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.08 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.08 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
{
"name": "@guwidoe/pi-prompt-suggester",
"version": "0.3.1",
"type": "module",
"description": "Intent-aware next-prompt suggestion extension for pi",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/guwidoe/pi-prompt-suggester.git"
},
"homepage": "https://github.com/guwidoe/pi-prompt-suggester#readme",
"bugs": {
"url": "https://github.com/guwidoe/pi-prompt-suggester/issues"
},
"main": "dist/index.js",
"keywords": [
"pi-package"
],
"pi": {
"extensions": [
"./dist/index.js"
]
},
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"test": "npm run build && node --test",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"@mariozechner/pi-agent-core": "*",
"@mariozechner/pi-ai": "*",
"@mariozechner/pi-coding-agent": "*"
},
"devDependencies": {
"@mariozechner/pi-agent-core": "*",
"@mariozechner/pi-ai": "*",
"@mariozechner/pi-coding-agent": "*",
"@types/node": "^24.3.0",
"typescript": "^5.7.3"
}
}