Files
pi-kit/package.json
Aleksey Shakhmatov 1df4ea1b72 fix(docs): correct install one-liner raw URL (Gitea, not GitLab) + v0.2.1
git.codelab.vc is Gitea/Forgejo: raw path is /raw/branch/<ref>/, the GitLab-style
/-/raw/main/ returned 404 so the one-command install was broken. The one-liner
now also fetches the script from the stable channel (vetted), not main.
2026-07-16 15:24:47 +03:00

47 lines
1007 B
JSON

{
"name": "@mvideo/pi-kit",
"version": "0.2.1",
"private": true,
"type": "module",
"description": "Корпоративный Pi-пакет: шаблоны задач, guardrails и скиллы для команды.",
"keywords": [
"pi-package",
"pi",
"coding-agent",
"internal"
],
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "git@git.codelab.vc:ai/pi-kit.git"
},
"pi": {
"extensions": [
"./extensions"
],
"skills": [
"./skills"
],
"prompts": [
"./prompts"
]
},
"scripts": {
"typecheck": "tsc --noEmit",
"test": "node --experimental-strip-types test/guardrails.test.ts"
},
"peerDependencies": {
"@earendil-works/pi-ai": "*",
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*",
"typebox": "*"
},
"dependencies": {},
"optionalDependencies": {
"@modelcontextprotocol/sdk": "^1.29.0"
},
"devDependencies": {
"typescript": "^5"
}
}