{
  "name": "@omega3_0/nanoagent",
  "version": "1.1.0",
  "description": "Ultra-lightweight, scalable CLI/TUI coding agent optimized for tiny local models & remote runtimes",
  "module": "dist/opentui/index.js",
  "type": "module",
  "main": "dist/main.js",
  "bin": {
    "nanoagent": "dist/main.js",
    "nanogent": "dist/main.js",
    "nanogent-tui": "dist/main.js",
    "nano-agent": "dist/main.js"
  },
  "files": [
    "dist/",
    "skills/",
    "scripts/install-bun.mjs",
    "AGENTS.md",
    "README.md",
    "SECURITY.md",
    "LICENSE"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/leeno7786-coder/nanoagent.git"
  },
  "homepage": "https://github.com/leeno7786-coder/nanoagent#readme",
  "bugs": {
    "url": "https://github.com/leeno7786-coder/nanoagent/issues"
  },
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "agent",
    "ai",
    "cli",
    "tui",
    "llm",
    "coding",
    "assistant",
    "qwen",
    "small-models",
    "local-ai"
  ],
  "author": "leeno7786-coder",
  "license": "MIT",
  "private": false,
  "engines": {
    "node": ">=18"
  },
  "scripts": {
    "nanoagent": "bun run src/main.ts",
    "nanogent": "bun run src/main.ts",
    "start": "bun run src/main.ts",
    "start:tui": "bun run src/main.ts tui",
    "start:node": "node dist/main.js",
    "agent": "bun run src/main.ts run",
    "typecheck": "tsc --noEmit",
    "lint": "eslint src --ext .ts,.tsx",
    "format": "prettier --write src",
    "format:check": "prettier --check src",
    "test": "bun test",
    "test:bun": "bun test",
    "test:security": "bun test src/security/index.test.ts",
    "self-test": "node dist/main.js run --prompt \"run the built-in self-test\" --workspace .",
    "ci": "npm run typecheck && npm run lint && npm run format:check && npm test && npm run build",
    "build": "tsc -p tsconfig.json && node -e \"try{require('fs').chmodSync('dist/main.js',0o755)}catch(e){}\"",
    "build:bun": "bun build src/main.ts src/opentui/index.tsx --outdir dist --minify --target node",
    "postinstall": "node scripts/install-bun.mjs",
    "prepack": "npm run build",
    "package": "npm pack"
  },
  "devDependencies": {
    "@types/bun": "latest",
    "@types/diff": "^7.0.0",
    "@types/node": "^20.14.0",
    "@types/react": "^19",
    "@types/react-dom": "^19",
    "ajv": "6.12.6",
    "bun": "^1.2.4",
    "esbuild": "^0.24.0",
    "eslint": "^9.0.0",
    "prettier": "^3.0.0",
    "typescript": "^5.6.3",
    "typescript-eslint": "^8.65.0"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.29.0",
    "@openrouter/sdk": "^0.13.7",
    "@opentui/core": "^0.2.1",
    "@opentui/react": "^0.2.1",
    "clipboardy": "^5.3.1",
    "diff": "^7.0.0",
    "dotenv": "^17.4.2",
    "openai": "^6.38.0",
    "react": "^19.2.6",
    "react-dom": "^19.2.6",
    "tiktoken": "^1.0.22",
    "zustand": "^5.0.14"
  },
  "optionalDependencies": {
    "@oven/bun-darwin-arm64": "^1.3.0",
    "@oven/bun-darwin-x64": "^1.3.0",
    "@oven/bun-linux-x64": "^1.3.0",
    "@oven/bun-linux-x64-baseline": "^1.3.0",
    "@oven/bun-windows-x64": "^1.3.0",
    "@oven/bun-windows-x64-baseline": "^1.3.0"
  }
}
