@ehubbell/gitty
Version:
A simple CLI that will fetch, store, and clone Github repos.
91 lines (90 loc) • 2.5 kB
JSON
{
"name": "@ehubbell/gitty",
"description": "A simple CLI that will fetch, store, and clone Github repos.",
"homepage": "https://github.com/ehubbell/gitty",
"version": "0.3.7",
"license": "ISC",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"bin": {
"gitty": "dist/index.cjs.js"
},
"files": [
"dist"
],
"author": {
"name": "Eric Hubbell",
"email": "eric@erichubbell.com",
"url": "https://github.com/ehubbell"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ehubbell/gitty.git"
},
"bugs": {
"url": "https://github.com/ehubbell/gitty/issues"
},
"keywords": [
"git",
"gitty",
"git clone",
"git download",
"git tarball",
"playbooks"
],
"scripts": {
"start": "vite build --mode development --watch --sourcemap --minify false",
"build": "vite build --mode production --minify false",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier src",
"format:fix": "prettier --write src",
"clean": "npm run lint:fix && npm run format:fix",
"docs:start": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"commit": "scripts/commit.sh",
"deploy": "scripts/deploy.sh",
"git": "git push --tags",
"test": "jest",
"prepare": "husky"
},
"dependencies": {
"@octokit/core": "^6.1.2",
"archiver": "^7.0.1",
"chalk": "^4.1.2",
"enquirer": "^2.4.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"fs-extra": "^11.2.0",
"fstream": "^1.0.12",
"ora": "5.4.1",
"sade": "^1.8.1",
"simple-git": "^3.24.0",
"unzip-stream": "^0.3.4",
"vite-plugin-dts": "^3.9.1"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"@vitejs/plugin-react": "^3.0.0",
"dts-bundle-generator": "^7.1.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eqeqeq-fix": "^1.0.3",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^9.1.7",
"jest": "^29.5.0",
"prettier": "^2.8.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "^4.9.4",
"typescript-transform-paths": "^3.4.7",
"vite": "^4.0.0"
}
}