-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.03 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.03 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
46
{
"name": "kostyay-agent-stuff",
"version": "1.0.0",
"description": "Kostya's pi coding agent extensions, skills, and themes",
"repository": {
"type": "git",
"url": "https://github.com/kostyay/agent-stuff.git"
},
"readme": "README.md",
"type": "module",
"scripts": {
"lint": "eslint --fix pi-extensions/ tests/ && npx tsc --noEmit",
"test": "npm run lint && node --experimental-strip-types --test tests/*.test.ts"
},
"keywords": [
"pi-package",
"pi-extension",
"pi-skill",
"pi-theme"
],
"pi": {
"extensions": [
"./pi-extensions",
"!./pi-extensions/sandbox"
],
"prompts": [
"./pi-extensions/subagent/prompts"
],
"skills": [
"./skills"
],
"themes": [
"./pi-themes"
]
},
"peerDependencies": {
"@mariozechner/pi-ai": "^0.69.0",
"@mariozechner/pi-coding-agent": "^0.69.0",
"@mariozechner/pi-tui": "^0.69.0",
"typebox": "^1.1.32"
},
"devDependencies": {
"eslint": "^10.0.2",
"typescript-eslint": "^8.56.1"
}
}