fjtui/package.json

27 lines
560 B
JSON
Raw Permalink Normal View History

2026-06-01 00:59:22 +00:00
{
"name": "gitea-tui",
"version": "1.0.0",
"description": "Interactive TUI explorer for Gitea and Forgejo issues",
"type": "module",
"main": "dist/index.js",
"bin": {
"gitea-tui": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"prepare": "tsc",
2026-06-01 00:59:22 +00:00
"start": "node dist/index.js",
"prepublishOnly": "npm run build"
},
"dependencies": {
"axios": "^1.7.9",
"chalk": "^5.3.0",
"commander": "^12.1.0"
},
"devDependencies": {
"@types/node": "^20.11.0",
"pkg": "^5.8.1",
2026-06-01 00:59:22 +00:00
"typescript": "^5.3.3"
}
}