Files
pnpm/fetching/git-fetcher/package.json
2024-12-16 02:31:45 +01:00

59 lines
1.5 KiB
JSON

{
"name": "@pnpm/git-fetcher",
"version": "1000.0.1",
"description": "A fetcher for git-hosted packages",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"!*.map"
],
"scripts": {
"_test": "jest",
"test": "pnpm run compile && pnpm run _test",
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
"prepublishOnly": "pnpm run compile",
"compile": "tsc --build && pnpm run lint --fix"
},
"repository": "https://github.com/pnpm/pnpm/blob/main/fetching/git-fetcher",
"engines": {
"node": ">=18.12"
},
"keywords": [
"pnpm10",
"pnpm",
"fetcher"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"homepage": "https://github.com/pnpm/pnpm/blob/main/fetching/git-fetcher#readme",
"peerDependencies": {
"@pnpm/logger": ">=5.1.0 <1001.0.0",
"@pnpm/worker": "workspace:^"
},
"dependencies": {
"@pnpm/fetcher-base": "workspace:*",
"@pnpm/fs.packlist": "catalog:",
"@pnpm/prepare-package": "workspace:*",
"@zkochan/rimraf": "catalog:",
"execa": "catalog:"
},
"devDependencies": {
"@pnpm/create-cafs-store": "workspace:*",
"@pnpm/git-fetcher": "workspace:*",
"@pnpm/logger": "workspace:*",
"@pnpm/store.cafs": "workspace:*",
"@pnpm/types": "workspace:*",
"tempy": "catalog:"
},
"funding": "https://opencollective.com/pnpm",
"exports": {
".": "./lib/index.js"
},
"jest": {
"preset": "@pnpm/jest-config"
}
}