go-git-it
Version:
Download any repository or subdirectory on GitHub with support for Node.js and the CLI
71 lines • 1.53 kB
JSON
{
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cezaraugusto/go-git-it.git"
},
"name": "go-git-it",
"version": "5.0.0",
"description": "Download any repository or subdirectory on GitHub with support for Node.js and the CLI",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"bin": {
"go-git-it": "./dist/index.cjs"
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"author": {
"name": "Cezar Augusto",
"email": "boss@cezaraugusto.net",
"url": "https://cezaraugusto.com"
},
"keywords": [
"git",
"github",
"clone",
"subdirectory",
"subdirectories",
"folder",
"folders",
"file",
"files",
"some",
"download",
"get",
"clone",
"pull"
],
"devDependencies": {
"@eslint/js": "^9.25.1",
"@rslib/core": "^0.6.9",
"@types/node": "^22.8.1",
"@types/progress": "^2.0.7",
"@vitest/coverage-v8": "^3.1.3",
"prettier": "^3.5.3",
"eslint": "^9.25.1",
"globals": "^16.0.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.31.1",
"vitest": "^3.1.3"
},
"dependencies": {
"progress": "^2.0.3"
},
"scripts": {
"build": "rslib build",
"dev": "rslib build --watch",
"format": "prettier --write .",
"lint": "eslint .",
"test": "vitest",
"test:coverage": "vitest run --coverage"
}
}