UNPKG

csv2gsheets

Version:

CLI tool to convert local CSV files into Google Sheets files in a designated Google Drive folder.

69 lines (68 loc) 1.85 kB
{ "name": "csv2gsheets", "version": "2.1.0", "description": "CLI tool to convert local CSV files into Google Sheets files in a designated Google Drive folder.", "type": "module", "engines": { "node": ">=18.18.0 || >=20.9.0" }, "exports": "./build/src/index.js", "main": "build/src/index.js", "bin": { "c2g": "build/src/index.js", "csv2gsheets": "build/src/index.js" }, "files": [ "docs", "build/src" ], "scripts": { "build": "npx tsc && npm run postbuild", "faker": "node faker/faker.mjs", "postbuild": "node postbuild/postbuild.mjs", "test": "npm run build && npx jest", "test-only": "npx jest --detectOpenHandles" }, "repository": { "type": "git", "url": "git+https://github.com/ttsukagoshi/csv2gsheets.git" }, "keywords": [ "google-sheets", "csv", "google-drive-api", "cli" ], "author": "ttsukagoshi", "license": "MIT", "bugs": { "url": "https://github.com/ttsukagoshi/csv2gsheets/issues" }, "homepage": "https://github.com/ttsukagoshi/csv2gsheets#readme", "devDependencies": { "@faker-js/faker": "^8.4.1", "@types/inquirer": "^9.0.7", "@types/jest": "^29.5.12", "@types/update-notifier": "^6.0.8", "@typescript-eslint/eslint-plugin": "^7.13.1", "@typescript-eslint/parser": "^7.13.1", "eslint": "^8.57.0", "eslint-config-prettier": "^9.0.0", "eslint-plugin-jest": "^28.6.0", "eslint-plugin-prettier": "^5.0.0", "jest": "^29.6.4", "prettier": "^3.2.5", "ts-jest": "^29.1.5", "ts-node": "^10.9.1", "typescript": "^5.5.2" }, "dependencies": { "@google-cloud/local-auth": "^3.0.0", "commander": "^12.1.0", "googleapis": "^140.0.0", "inquirer": "^9.3.2", "loud-rejection": "^2.2.0", "read-package-up": "^11.0.0", "update-notifier": "^7.0.0" } }