{
  "name": "platformio-mcp",
  "version": "3.0.0",
  "description": "PIO Agent: a PlatformIO MCP server and visual control plane for AI-assisted embedded development across 1000+ boards.",
  "type": "module",
  "main": "build/index.js",
  "bin": {
    "platformio-mcp": "build/cli.js",
    "pio-agent": "build/cli.js"
  },
  "files": [
    ".agents/plugins/marketplace.json",
    "build",
    "plugins/platformio-mcp/.codex-plugin/plugin.json",
    "plugins/platformio-mcp/.mcp.json",
    "plugins/platformio-mcp/assets",
    "plugins/platformio-mcp/runtime",
    "plugins/platformio-mcp/scripts",
    "plugins/platformio-mcp/skills",
    "plugins/platformio-mcp/tool-coverage.json",
    "web/dist",
    "scripts/installers",
    "scripts/validate-codex-plugin.mjs",
    "LICENSE",
    "README.md"
  ],
  "scripts": {
    "build:ui": "cd web && npm ci && npm run build",
    "build": "npm run build:ui && tsc",
    "dev": "tsx src/index.ts",
    "watch": "tsc --watch",
    "test": "vitest run tests",
    "test:ci:unit": "vitest run tests --exclude tests/mcp.test.ts --exclude tests/mcp-agent-smoke.test.ts",
    "test:e2e:ci": "vitest run tests/agent-workflows.test.ts tests/cli-agent-smoke.test.ts tests/mcp-agent-smoke.test.ts",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "plugin:sync": "node scripts/sync-codex-plugin.mjs",
    "plugin:sync:check": "node scripts/sync-codex-plugin.mjs --check",
    "plugin:build": "npm run plugin:sync && npm run build:ui && tsc && node scripts/build-codex-plugin.mjs",
    "plugin:validate": "node scripts/validate-codex-plugin.mjs --require-runtime",
    "plugin:test": "vitest run tests/codex-plugin-manifest.test.ts tests/codex-plugin-launcher.test.ts tests/codex-plugin-skills.test.ts",
    "package:validate": "node scripts/validate-npm-package.mjs",
    "lint": "eslint src/**/*.ts",
    "format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
    "format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
    "smoke-test": "node -e \"require('fs').accessSync('build/index.js'); require('fs').accessSync('build/cli.js'); require('fs').accessSync('web/dist/index.html'); require('fs').accessSync('scripts/installers/index.js'); require('fs').accessSync('scripts/validate-codex-plugin.mjs')\"",
    "prepublishOnly": "npm run build && npm run plugin:build && npm run plugin:validate && npm run plugin:test && npm run smoke-test && npm run package:validate"
  },
  "keywords": [
    "mcp",
    "model-context-protocol",
    "platformio",
    "pio-agent",
    "embedded",
    "iot",
    "arduino",
    "esp32",
    "stm32",
    "firmware",
    "embedded-systems",
    "cline",
    "claude",
    "antigravity",
    "ai",
    "dashboard"
  ],
  "author": "PIO Agent Contributors",
  "license": "MIT",
  "engines": {
    "node": ">=18.0.0"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.29.0",
    "cors": "^2.8.5",
    "express": "^5.2.1",
    "express-rate-limit": "^8.3.2",
    "open": "^10.2.0",
    "proper-lockfile": "^4.1.2",
    "socket.io": "^4.8.0",
    "tree-kill": "^1.2.2",
    "zod": "^3.22.0"
  },
  "devDependencies": {
    "@types/cors": "^2.8.17",
    "@types/express": "^5.0.0",
    "@types/express-rate-limit": "^5.1.3",
    "@types/node": "^20.0.0",
    "@types/proper-lockfile": "^4.1.4",
    "@types/supertest": "^7.2.0",
    "@vitest/ui": "^4.0.0",
    "esbuild": "^0.28.2",
    "eslint": "^9.0.0",
    "prettier": "^3.1.0",
    "socket.io-client": "^4.8.3",
    "supertest": "^7.2.2",
    "tsx": "^4.7.0",
    "typescript": "^5.3.0",
    "typescript-eslint": "^8.0.0",
    "vitest": "^4.0.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/jl-codes/platformio-mcp.git"
  },
  "bugs": {
    "url": "https://github.com/jl-codes/platformio-mcp/issues"
  },
  "homepage": "https://github.com/jl-codes/platformio-mcp#readme"
}
