cursor-tools
Version:
CLI tools for AI agents
87 lines (86 loc) • 2.19 kB
JSON
{
"name": "cursor-tools",
"description": "CLI tools for AI agents",
"keywords": [
"cursor",
"tools",
"ai",
"assistant"
],
"version": "0.6.0-alpha.12",
"type": "module",
"main": "./dist/index.mjs",
"bin": {
"cursor-tools": "dist/index.mjs"
},
"scripts": {
"compile": "tsc -build",
"build": "node build.js",
"prepublish": "npm run compile && npm run lint && npm run build",
"dev": "node --import=tsx src/index.ts",
"serve-test": "bun --hot tests/commands/browser/serve.ts",
"test": "vitest",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"lint": "npm run format && eslint \"src/**/*.ts\"",
"release": "node scripts/release.cjs"
},
"files": [
"package.json",
"dist",
"README.md"
],
"author": "eastlondoner",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/eastlondoner/cursor-tools.git"
},
"homepage": "https://github.com/eastlondoner/cursor-tools#readme",
"bugs": {
"url": "https://github.com/eastlondoner/cursor-tools/issues"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@types/bun": "^1.2.2",
"@types/node": "^22.13.5",
"@typescript-eslint/eslint-plugin": "^8.24.1",
"@typescript-eslint/parser": "^8.24.1",
"esbuild": "^0.25.0",
"eslint": "^9.21.0",
"globals": "^16.0.0",
"prettier": "^3.5.1",
"tsx": "^4.19.3",
"typescript": "^5.7.3",
"vitest": "^3.0.6"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@browserbasehq/stagehand": "^1.14.0",
"@modelcontextprotocol/sdk": "^1.5.0",
"@types/glob": "^8.1.0",
"dotenv": "16.4.7",
"eventsource-client": "1.1.3",
"fast-glob": "^3.3.3",
"glob": "^11.0.1",
"google-auth-library": "^9.15.1",
"openai": "^4.85.3",
"p-queue": "^8.1.0",
"playwright": "1.50.1",
"playwright-core": "1.50.1",
"punycode": "^2.3.1",
"repomix": "0.3.0",
"zod": "3.24.2"
},
"engines": {
"node": ">=18.0.0"
},
"overrides": {
"punycode": "^2.3.1",
"playwright-core": "1.50.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}