Files
gitea-creator/package.json

35 lines
795 B
JSON

{
"name": "gitea-creator",
"version": "1.0.0",
"description": "CLI tool to create repositories on Gitea servers",
"main": "dist/index.js",
"type": "module",
"bin": {
"gitea-creator": "./dist/index.js",
"gitea": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc && node dist/index.js",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"dist/**/*",
"README.md",
"env.example"
],
"keywords": ["gitea", "git", "cli", "repository"],
"author": "harvmaster",
"license": "ISC",
"dependencies": {
"commander": "^12.1.0",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/node": "^24.2.0",
"@types/prompts": "^2.4.9",
"typescript": "^5.9.2"
}
}