UNPKG

gitly

Version:

An API to download and/or extract git repositories

75 lines (74 loc) 1.64 kB
{ "name": "gitly", "version": "3.2.2", "description": "An API to download and/or extract git repositories", "type": "module", "main": "./dist/main.js", "types": "./dist/main.d.ts", "exports": { ".": { "import": { "types": "./dist/main.d.ts", "default": "./dist/main.js" }, "require": { "types": "./dist/main.d.cts", "default": "./dist/main.cjs" } } }, "repository": "github:iwatakeshi/gitly", "author": "Takeshi Iwana <iwatakeshi@gmail.com>", "license": "MIT", "files": [ "dist/**/*" ], "dependencies": { "axios": "^1.12.2", "cross-spawn": "^7.0.6", "shelljs": "^0.10.0", "tar": "^7.5.1" }, "devDependencies": { "@types/cross-spawn": "^6.0.6", "@types/jest": "^29.5.14", "@types/node": "^22.13.10", "@types/shelljs": "^0.8.17", "@types/tar": "^6.1.13", "jest": "^29.7.0", "prettier": "^3.5.3", "ts-jest": "^29.2.6", "tslib": "^2.8.1", "tsup": "^8.4.0", "typescript": "^5.9.2" }, "scripts": { "prepare": "npm run build", "preversion": "", "prepublishOnly": "npm run test", "build": "tsup", "test": "jest", "format": "prettier --write \"src/**/*.ts\" \"*.json\" \"*.md\"" }, "keywords": [ "archive", "bitbucket", "download", "extract", "fetch", "git", "github", "gitlab", "offline-first", "offline", "project", "repo", "repository", "scaffold", "tarbarll", "zip" ], "engines": { "node": ">=20.x" } }