mirror of
https://github.com/n8n-io/n8n
synced 2026-04-21 15:47:20 +00:00
55 lines
1.5 KiB
JSON
55 lines
1.5 KiB
JSON
{
|
|
"name": "@n8n/computer-use",
|
|
"version": "0.2.0",
|
|
"description": "Local AI gateway for n8n Instance AI — filesystem, shell, screenshots, mouse/keyboard, and browser automation",
|
|
"bin": {
|
|
"n8n-computer-use": "dist/cli.js"
|
|
},
|
|
"scripts": {
|
|
"clean": "rimraf dist .turbo",
|
|
"start": "node dist/cli.js serve",
|
|
"dev": "pnpm watch",
|
|
"typecheck": "tsc --noEmit",
|
|
"build": "tsc -p tsconfig.build.json",
|
|
"format": "biome format --write src",
|
|
"format:check": "biome ci src",
|
|
"lint": "eslint . --quiet",
|
|
"lint:fix": "eslint . --fix",
|
|
"watch": "tsc -p tsconfig.build.json --watch",
|
|
"test": "jest",
|
|
"test:unit": "jest",
|
|
"test:dev": "jest --watch"
|
|
},
|
|
"main": "dist/cli.js",
|
|
"exports": {
|
|
".": "./dist/cli.js",
|
|
"./daemon": "./dist/daemon.js",
|
|
"./config": "./dist/config.js",
|
|
"./logger": "./dist/logger.js"
|
|
},
|
|
"module": "src/cli.ts",
|
|
"types": "dist/cli.d.ts",
|
|
"files": [
|
|
"dist/**/*"
|
|
],
|
|
"dependencies": {
|
|
"@anthropic-ai/sandbox-runtime": "^0.0.42",
|
|
"@inquirer/prompts": "^8.3.2",
|
|
"@jitsi/robotjs": "^0.6.21",
|
|
"@modelcontextprotocol/sdk": "1.26.0",
|
|
"@n8n/mcp-browser": "workspace:*",
|
|
"@vscode/ripgrep": "^1.17.1",
|
|
"eventsource": "^3.0.6",
|
|
"node-screenshots": "^0.2.8",
|
|
"picocolors": "catalog:",
|
|
"sharp": "^0.34.5",
|
|
"yargs-parser": "21.1.1",
|
|
"zod": "catalog:",
|
|
"zod-to-json-schema": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@n8n/typescript-config": "workspace:*",
|
|
"@types/node": "catalog:",
|
|
"@types/yargs-parser": "21.0.0"
|
|
}
|
|
}
|