-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 752 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 752 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
38
39
40
41
42
43
{
"name": "pi-interview",
"version": "0.5.5",
"description": "Interactive interview form extension for pi coding agent",
"author": "Nico Bailon",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nicobailon/pi-interview-tool.git"
},
"keywords": [
"pi",
"pi-coding-agent",
"pi-package",
"interview",
"form",
"extension",
"cli"
],
"bin": {
"pi-interview": "bin/install.js"
},
"files": [
"bin/",
"form/",
"index.ts",
"schema.ts",
"server.ts",
"settings.ts",
"README.md"
],
"scripts": {
"test": "vitest run"
},
"pi": {
"extensions": [
"./index.ts"
]
},
"devDependencies": {
"vitest": "^4.0.18"
}
}