Files
pnpm/cache/api/package.json
Zoltan Kochan f2ac90ce01 refactor: drop encode-registry, use URL.host directly
encode-registry replaced : with + for filesystem compatibility. With
SQLite, colons are fine in DB keys. Use URL.host directly with a simple
Map cache for hot-path performance.
2026-04-01 15:10:36 +02:00

53 lines
1.2 KiB
JSON

{
"name": "@pnpm/cache.api",
"version": "1000.0.36",
"description": "API for controlling the cache",
"keywords": [
"pnpm",
"pnpm11",
"cache"
],
"license": "MIT",
"funding": "https://opencollective.com/pnpm",
"repository": "https://github.com/pnpm/pnpm/tree/main/cache/api",
"homepage": "https://github.com/pnpm/pnpm/tree/main/cache/api#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": {
"lint": "eslint \"src/**/*.ts\"",
"test": "pn compile",
"prepublishOnly": "pn compile",
"compile": "tsgo --build && pn lint --fix"
},
"dependencies": {
"@pnpm/cache.metadata": "workspace:*",
"@pnpm/config.reader": "workspace:*",
"@pnpm/resolving.npm-resolver": "workspace:*",
"@pnpm/store.index": "workspace:*"
},
"peerDependencies": {
"@pnpm/logger": "catalog:"
},
"devDependencies": {
"@pnpm/cache.api": "workspace:*",
"@pnpm/logger": "workspace:*"
},
"engines": {
"node": ">=22.13"
},
"jest": {
"preset": "@pnpm/jest-config"
}
}