shippie
Version:
an extensible code review agent
80 lines (79 loc) • 2.05 kB
JSON
{
"name": "shippie",
"version": "0.21.2",
"description": "an extensible code review agent",
"type": "module",
"main": "./dist/server.mjs",
"bin": {
"shippie": "./bin/shippie.mjs"
},
"repository": {
"type": "git",
"url": "https://github.com/mattzcarey/shippie"
},
"scripts": {
"review": "flue run review --target node",
"dev": "flue dev --target node",
"build": "flue build --target node",
"start": "node dist/server.mjs",
"prepublishOnly": "flue build --target node",
"release": "npm run build && changeset publish",
"version": "changeset version",
"test": "vitest run",
"test:watch": "vitest",
"check": "biome check .",
"check:types": "tsc --noEmit",
"check:fix": "biome check . --fix",
"check:fix:unsafe": "biome check . --unsafe --fix"
},
"keywords": [
"code-review",
"shippie",
"review",
"model-context-protocol",
"mcp",
"chatgpt",
"gpt",
"openai",
"anthropic",
"sonnet 4",
"claude code",
"grok",
"perplexity",
"gpt-4.1",
"huggingface",
"ai",
"genai",
"sonnet"
],
"author": "Matt Carey",
"license": "MIT",
"engines": {
"node": ">=22.19.0"
},
"dependencies": {
"@flue/github": "1.0.0-beta.1",
"@flue/runtime": "1.0.0-beta.1",
"octokit": "^3.1.0",
"picomatch": "^4.0.2",
"valibot": "^1.4.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0",
"@flue/cli": "1.0.0-beta.1",
"@types/node": "^22.10.0",
"@types/picomatch": "^4.0.0",
"typescript": "^5.1.6",
"vitest": "^3.2.4"
},
"overrides": {
"hono": "^4.12.26",
"esbuild": "^0.28.1"
},
"files": [
"dist",
"bin"
]
}