mirror of
https://github.com/yoshiko-pg/difit.git
synced 2026-09-19 05:03:24 +08:00
108 lines
3.0 KiB
JSON
108 lines
3.0 KiB
JSON
{
|
|
"name": "reviewit",
|
|
"version": "1.1.99",
|
|
"description": "A lightweight command-line tool that spins up a local web server to display Git commit diffs in a GitHub-like Files changed view",
|
|
"type": "module",
|
|
"engines": {
|
|
"node": ">=21.0.0"
|
|
},
|
|
"bin": {
|
|
"reviewit": "./dist/cli/index.js"
|
|
},
|
|
"main": "./dist/cli/index.js",
|
|
"homepage": "https://github.com/yoshiko-pg/reviewit",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/yoshiko-pg/reviewit.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/yoshiko-pg/reviewit/issues"
|
|
},
|
|
"scripts": {
|
|
"dev": "node scripts/dev.js",
|
|
"dev:cli": "tsc --project tsconfig.cli.json && NODE_ENV=development node dist/cli/index.js",
|
|
"build": "tsc -b && vite build",
|
|
"build:cli": "tsc --project tsconfig.cli.json",
|
|
"start": "pnpm run build && node dist/cli/index.js",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"format": "prettier --write .",
|
|
"typecheck": "tsc -b",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"prepare": "lefthook install",
|
|
"prepublishOnly": "NODE_ENV=production pnpm run build"
|
|
},
|
|
"dependencies": {
|
|
"@octokit/rest": "^22.0.0",
|
|
"commander": "^14.0.0",
|
|
"dracula-prism": "^2.1.16",
|
|
"express": "^5.1.0",
|
|
"ink": "^6.0.1",
|
|
"lucide-react": "^0.525.0",
|
|
"open": "^10.1.2",
|
|
"prism-react-renderer": "^2.4.1",
|
|
"prism-themes": "^1.9.0",
|
|
"prismjs": "^1.30.0",
|
|
"react": "^19.1.0",
|
|
"react-dom": "^19.1.0",
|
|
"shiki": "^3.7.0",
|
|
"simple-git": "^3.28.0"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/eslintrc": "^3.3.1",
|
|
"@tailwindcss/forms": "^0.5.10",
|
|
"@tailwindcss/postcss": "^4.1.11",
|
|
"@tailwindcss/typography": "^0.5.16",
|
|
"@testing-library/jest-dom": "^6.6.3",
|
|
"@testing-library/react": "^16.3.0",
|
|
"@testing-library/user-event": "^14.6.1",
|
|
"@tsconfig/strictest": "^2.0.5",
|
|
"@types/express": "^5.0.3",
|
|
"@types/node": "^24.0.8",
|
|
"@types/prismjs": "^1.26.5",
|
|
"@types/react": "^19.1.8",
|
|
"@types/react-dom": "^19.1.6",
|
|
"@typescript-eslint/eslint-plugin": "^8.35.1",
|
|
"@typescript-eslint/parser": "^8.35.1",
|
|
"@vitejs/plugin-react": "^4.6.0",
|
|
"autoprefixer": "^10.4.21",
|
|
"eslint": "^9.30.0",
|
|
"eslint-config-prettier": "^10.1.5",
|
|
"eslint-plugin-import": "^2.32.0",
|
|
"eslint-plugin-react": "^7.37.5",
|
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
"eslint-plugin-unused-imports": "^4.1.4",
|
|
"happy-dom": "^18.0.1",
|
|
"lefthook": "^1.11.14",
|
|
"postcss": "^8.5.6",
|
|
"prettier": "^3.6.2",
|
|
"tailwindcss": "^4.1.11",
|
|
"typescript": "^5.8.3",
|
|
"undici": "^7.11.0",
|
|
"vite": "^7.0.0",
|
|
"vitest": "^3.2.4"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md"
|
|
],
|
|
"keywords": [
|
|
"git",
|
|
"diff",
|
|
"cli",
|
|
"review",
|
|
"github",
|
|
"code-review",
|
|
"tailwind",
|
|
"react",
|
|
"diff-viewer"
|
|
],
|
|
"author": "yoshiko-pg",
|
|
"license": "MIT",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"packageManager": "pnpm@10.10.0"
|
|
}
|