mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-26 19:12:12 -04:00
Since v11 uses a new store version, all runtime packages (node, deno, bun) have a generated package.json with bin fields. The hardcoded switch block in the linker is no longer needed. Also moves getNodeBinsForCurrentOS, getDenoBinLocationForCurrentOS, and getBunBinLocationForCurrentOS out of @pnpm/constants into their respective resolver packages, since each is only used in one place.
60 lines
1.6 KiB
JSON
60 lines
1.6 KiB
JSON
{
|
|
"name": "@pnpm/engine.runtime.deno-resolver",
|
|
"version": "1002.0.1",
|
|
"description": "Resolves the Deno runtime",
|
|
"keywords": [
|
|
"pnpm",
|
|
"pnpm11",
|
|
"deno",
|
|
"runtime"
|
|
],
|
|
"license": "MIT",
|
|
"funding": "https://opencollective.com/pnpm",
|
|
"repository": "https://github.com/pnpm/pnpm/tree/main/engine/runtime/deno-resolver",
|
|
"homepage": "https://github.com/pnpm/pnpm/tree/main/engine/runtime/deno-resolver#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": "pnpm run compile",
|
|
"prepublishOnly": "pnpm run compile",
|
|
"compile": "tsgo --build && pnpm run lint --fix"
|
|
},
|
|
"dependencies": {
|
|
"@pnpm/crypto.shasums-file": "workspace:*",
|
|
"@pnpm/error": "workspace:*",
|
|
"@pnpm/fetching.binary-fetcher": "workspace:*",
|
|
"@pnpm/fetching.fetcher-base": "workspace:*",
|
|
"@pnpm/fetching.types": "workspace:*",
|
|
"@pnpm/resolving.npm-resolver": "workspace:*",
|
|
"@pnpm/resolving.resolver-base": "workspace:*",
|
|
"@pnpm/types": "workspace:*",
|
|
"@pnpm/util.lex-comparator": "catalog:",
|
|
"semver": "catalog:"
|
|
},
|
|
"peerDependencies": {
|
|
"@pnpm/worker": "workspace:^"
|
|
},
|
|
"devDependencies": {
|
|
"@pnpm/engine.runtime.deno-resolver": "workspace:*",
|
|
"@types/semver": "catalog:"
|
|
},
|
|
"engines": {
|
|
"node": ">=22.13"
|
|
},
|
|
"jest": {
|
|
"preset": "@pnpm/jest-config"
|
|
}
|
|
}
|