diff --git a/git/package.json b/git/package.json new file mode 100644 index 0000000..5f6554d --- /dev/null +++ b/git/package.json @@ -0,0 +1,37 @@ +{ + "name": "@coderabbit/git", + "version": "3.1.3", + "description": "Git integration utilities for CodeRabbit projects", + "main": "dist/index.js", + "types": "dist/index.d.ts", + "bin": { + "git-util": "dist/cli.js" + }, + "scripts": { + "build": "tsc -p tsconfig.json", + "test": "jest", + "lint": "eslint . --ext .ts", + "verify-version": "rg -n '3\\.1\\.2' --glob '!*node_modules/*' --glob '!*dist/*' || echo \"✅ old version removed\"" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/CodeRabbitInc/git.git" + }, + "keywords": [ + "git", + "cli", + "utilities" + ], + "author": "CodeRabbit Inc.", + "license": "MIT", + "dependencies": { + "commander": "^10.0.0" + }, + "devDependencies": { + "typescript": "^5.1.0", + "jest": "^29.2.0", + "eslint": "^8.38.0", + "@types/jest": "^29.2.0", + "@types/node": "^18.16.0" + } +} \ No newline at end of file diff --git a/package.json b/package.json index 90c1912..ec1e922 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openapi-mcp-generator", - "version": "3.1.2", + "version": "3.1.3", "description": "Generates MCP server code from OpenAPI specifications", "license": "MIT", "author": "Harsha", @@ -17,6 +17,7 @@ "README.md", "LICENSE" ], + "types": "dist/index.d.ts", "scripts": { "start": "node dist/index.js", "clean": "rimraf dist",