Files
pnpm/cache/api/package.json
2024-12-16 02:31:45 +01:00

54 lines
1.2 KiB
JSON

{
"name": "@pnpm/cache.api",
"version": "1000.0.1",
"description": "API for controlling the cache",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"!*.map"
],
"engines": {
"node": ">=18.12"
},
"scripts": {
"lint": "eslint \"src/**/*.ts\"",
"test": "pnpm run compile",
"prepublishOnly": "pnpm run compile",
"compile": "tsc --build && pnpm run lint --fix"
},
"repository": "https://github.com/pnpm/pnpm/blob/main/cache/api",
"keywords": [
"pnpm10",
"pnpm",
"cache"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"homepage": "https://github.com/pnpm/pnpm/blob/main/cache/api#readme",
"devDependencies": {
"@pnpm/cache.api": "workspace:*",
"@pnpm/logger": "workspace:*"
},
"dependencies": {
"@pnpm/config": "workspace:*",
"@pnpm/constants": "workspace:*",
"@pnpm/npm-resolver": "workspace:*",
"@pnpm/store.cafs": "workspace:*",
"encode-registry": "catalog:",
"fast-glob": "catalog:"
},
"peerDependencies": {
"@pnpm/logger": ">=5.1.0 <1001.0.0"
},
"funding": "https://opencollective.com/pnpm",
"exports": {
".": "./lib/index.js"
},
"jest": {
"preset": "@pnpm/jest-config"
}
}