google-oauth-cli-generator
Version:
CLI tool to quickly set up Google OAuth authentication for hackathons and projects
56 lines • 1.41 kB
JSON
{
"name": "google-oauth-cli-generator",
"version": "1.0.0",
"description": "CLI tool to quickly set up Google OAuth authentication for hackathons and projects",
"main": "dist/index.js",
"bin": {
"google-oauth-setup": "./bin/cli.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "npm run build && node dist/index.js",
"dev:setup": "npm run build && node dist/index.js setup",
"test": "jest",
"prepublishOnly": "npm run build && npm test",
"publish:public": "npm publish --access public"
},
"keywords": [
"oauth",
"google-auth",
"cli",
"authentication",
"hackathon",
"boilerplate"
],
"author": "CipherAI",
"license": "MIT",
"dependencies": {
"commander": "^9.5.0",
"inquirer": "^8.2.6",
"fs-extra": "^11.1.1",
"chalk": "^4.1.2",
"ora": "^5.4.1"
},
"devDependencies": {
"@types/node": "^20.8.0",
"@types/inquirer": "^8.2.10",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.5",
"typescript": "^5.2.2",
"ts-node": "^10.9.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.1"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/cipherai/auth-setup.git"
},
"bugs": {
"url": "https://github.com/cipherai/auth-setup/issues"
},
"homepage": "https://github.com/cipherai/auth-setup#readme"
}