Files
pnpm/fetching/git-fetcher/package.json
Zoltan Kochan fcf37a191e chore: use tsgo
2025-12-15 23:29:05 +01:00

61 lines
1.6 KiB
JSON

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