package.json•1.88 kB
{
"name": "curupira",
"version": "2.11.0",
"description": "Curupira MCP Debugging CLI - AI-assisted React debugging tool",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"curupira": "./dist/bin/curupira.js"
},
"files": [
"dist/**/*",
"templates/**/*"
],
"scripts": {
"build": "tsc --build && chmod +x dist/bin/curupira.js",
"build:watch": "tsc --build --watch",
"dev": "tsx src/bin/curupira.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"type-check": "tsc --noEmit",
"clean": "rimraf dist",
"prepublishOnly": "echo 'Skipping build for private package'"
},
"dependencies": {
"@curupira/shared": "file:../shared",
"curupira-mcp-server": "file:../mcp-server",
"commander": "^11.1.0",
"chalk": "^5.3.0",
"ora": "^8.0.1",
"prompts": "^2.4.2",
"execa": "^8.0.1",
"fs-extra": "^11.2.0",
"semver": "^7.5.4",
"update-notifier": "^7.0.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/semver": "^7.5.6",
"@types/update-notifier": "^6.0.8",
"@types/prompts": "^2.4.9",
"rimraf": "^5.0.5",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^1.1.0"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"curupira",
"debugging",
"react",
"mcp",
"ai",
"developer-tools",
"cli"
],
"author": "Nexus Team",
"license": "MIT",
"homepage": "https://github.com/drzln/curupira#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/drzln/curupira.git"
},
"bugs": {
"url": "https://github.com/drzln/curupira/issues"
},
"private": true,
"publishConfig": {
"access": "public"
}
}