Peekaboo/package.json
dependabot[bot] f1cc0824a7
Bump the npm_and_yarn group across 1 directory with 4 updates
Bumps the npm_and_yarn group with 4 updates in the / directory: [esbuild](https://github.com/evanw/esbuild), [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest), [@vitest/ui](https://github.com/vitest-dev/vitest/tree/HEAD/packages/ui) and [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8).


Updates `esbuild` from 0.21.5 to 0.25.4
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG-2024.md)
- [Commits](https://github.com/evanw/esbuild/compare/v0.21.5...v0.25.4)

Updates `vitest` from 1.6.1 to 3.1.4
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v3.1.4/packages/vitest)

Updates `@vitest/ui` from 1.6.1 to 3.1.4
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v3.1.4/packages/ui)

Updates `@vitest/coverage-v8` from 1.6.1 to 3.1.4
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v3.1.4/packages/coverage-v8)

---
updated-dependencies:
- dependency-name: esbuild
  dependency-version: 0.25.4
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: vitest
  dependency-version: 3.1.4
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: "@vitest/ui"
  dependency-version: 3.1.4
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: "@vitest/coverage-v8"
  dependency-version: 3.1.4
  dependency-type: direct:development
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-05-25 12:08:45 +00:00

69 lines
1.8 KiB
JSON

{
"name": "@steipete/peekaboo-mcp",
"version": "1.0.0-beta.3",
"description": "A macOS utility exposed via Node.js MCP server for advanced screen captures, image analysis, and window management",
"type": "module",
"main": "dist/index.js",
"bin": {
"peekaboo-mcp": "dist/index.js"
},
"files": [
"dist/",
"peekaboo"
],
"scripts": {
"build": "tsc",
"build:swift": "./scripts/build-swift-universal.sh",
"build:all": "npm run build:swift && npm run build",
"start": "node dist/index.js",
"prepublishOnly": "npm run build:all",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:swift": "cd peekaboo-cli && swift test",
"test:integration": "npm run build && npm run test:swift && vitest run",
"test:all": "npm run test:integration",
"postinstall": "chmod +x dist/index.js 2>/dev/null || true"
},
"keywords": [
"mcp",
"screen-capture",
"macos",
"ai-analysis",
"image-analysis",
"window-management"
],
"author": "Peter Steinberger <steipete@gmail.com>",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"openai": "^4.0.0",
"pino": "^8.0.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"pino-pretty": "^10.0.0",
"typescript": "^5.3.0",
"vitest": "^3.1.4",
"@vitest/ui": "^3.1.4",
"@vitest/coverage-v8": "^3.1.4"
},
"engines": {
"node": ">=18.0.0"
},
"os": [
"darwin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/steipete/peekaboo.git"
},
"bugs": {
"url": "https://github.com/steipete/peekaboo/issues"
},
"homepage": "https://github.com/steipete/peekaboo#readme"
}