mirror of
https://github.com/nilbuild/diffity.git
synced 2026-09-19 07:26:16 +08:00
53 lines
1.1 KiB
JSON
53 lines
1.1 KiB
JSON
{
|
|
"name": "diffity",
|
|
"version": "0.9.5",
|
|
"description": "GitHub-style git diff viewer in the browser",
|
|
"type": "module",
|
|
"bin": {
|
|
"diffity": "./dist/index.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsx build.ts",
|
|
"dev": "tsx src/index.ts",
|
|
"dev:watch": "tsx build.ts --watch"
|
|
},
|
|
"dependencies": {
|
|
"better-sqlite3": "^12.8.0",
|
|
"commander": "^14.0.3",
|
|
"dayjs": "^1.11.20",
|
|
"open": "^11.0.0",
|
|
"picocolors": "^1.1.1"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"keywords": [
|
|
"git",
|
|
"diff",
|
|
"viewer",
|
|
"cli",
|
|
"code-review",
|
|
"github"
|
|
],
|
|
"author": "Kamran Ahmed <kamranahmed.se@gmail.com> (https://kamranahmed.se)",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/kamranahmedse/diffity.git"
|
|
},
|
|
"homepage": "https://diffity.com",
|
|
"bugs": {
|
|
"url": "https://github.com/kamranahmedse/diffity/issues"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"devDependencies": {
|
|
"@types/better-sqlite3": "^7.6.13",
|
|
"@types/node": "^25.5.0",
|
|
"esbuild": "^0.27.0",
|
|
"tsx": "^4.21.0",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|