| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- {
- "$schema": "https://json.schemastore.org/package.json",
- "name": "@kilocode/plugin",
- "version": "7.2.8",
- "type": "module",
- "license": "MIT",
- "scripts": {
- "typecheck": "tsgo --noEmit",
- "build": "tsc"
- },
- "exports": {
- ".": "./src/index.ts",
- "./tool": "./src/tool.ts",
- "./tui": "./src/tui.ts"
- },
- "files": [
- "dist"
- ],
- "dependencies": {
- "@kilocode/sdk": "workspace:*",
- "zod": "catalog:"
- },
- "peerDependencies": {
- "@opentui/core": ">=0.1.97",
- "@opentui/solid": ">=0.1.97"
- },
- "peerDependenciesMeta": {
- "@opentui/core": {
- "optional": true
- },
- "@opentui/solid": {
- "optional": true
- }
- },
- "devDependencies": {
- "@opentui/core": "0.1.97",
- "@opentui/solid": "0.1.97",
- "@tsconfig/node22": "catalog:",
- "@types/node": "catalog:",
- "typescript": "catalog:",
- "@typescript/native-preview": "catalog:"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/Kilo-Org/kilocode",
- "directory": "packages/plugin"
- }
- }
|