mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-10 11:18:18 -04:00
76 lines
2.0 KiB
JSON
76 lines
2.0 KiB
JSON
{
|
|
"name": "@pnpm/npm-resolver",
|
|
"version": "19.0.0",
|
|
"description": "Resolver for npm-hosted packages",
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"files": [
|
|
"lib",
|
|
"!*.map"
|
|
],
|
|
"engines": {
|
|
"node": ">=18.12"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
"_test": "jest",
|
|
"test": "pnpm run compile && pnpm run _test",
|
|
"prepublishOnly": "pnpm run compile",
|
|
"compile": "tsc --build && pnpm run lint --fix"
|
|
},
|
|
"repository": "https://github.com/pnpm/pnpm/blob/main/resolving/npm-resolver",
|
|
"keywords": [
|
|
"pnpm9",
|
|
"pnpm",
|
|
"resolver",
|
|
"npm"
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/pnpm/pnpm/issues"
|
|
},
|
|
"homepage": "https://github.com/pnpm/pnpm/blob/main/resolving/npm-resolver#readme",
|
|
"peerDependencies": {
|
|
"@pnpm/logger": "^5.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@pnpm/core-loggers": "workspace:*",
|
|
"@pnpm/error": "workspace:*",
|
|
"@pnpm/fetching-types": "workspace:*",
|
|
"@pnpm/graceful-fs": "workspace:*",
|
|
"@pnpm/resolve-workspace-range": "workspace:*",
|
|
"@pnpm/resolver-base": "workspace:*",
|
|
"@pnpm/types": "workspace:*",
|
|
"@zkochan/retry": "^0.2.0",
|
|
"encode-registry": "^3.0.1",
|
|
"load-json-file": "^6.2.0",
|
|
"lru-cache": "^10.2.0",
|
|
"normalize-path": "^3.0.0",
|
|
"p-limit": "^3.1.0",
|
|
"p-memoize": "4.0.1",
|
|
"parse-npm-tarball-url": "^3.0.0",
|
|
"path-temp": "^2.1.0",
|
|
"ramda": "npm:@pnpm/ramda@0.28.1",
|
|
"rename-overwrite": "^5.0.0",
|
|
"semver": "^7.6.0",
|
|
"ssri": "10.0.5",
|
|
"version-selector-type": "^3.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@pnpm/fetch": "workspace:*",
|
|
"@pnpm/npm-resolver": "workspace:*",
|
|
"@pnpm/test-fixtures": "workspace:*",
|
|
"@types/normalize-path": "^3.0.2",
|
|
"@types/ramda": "0.29.12",
|
|
"@types/semver": "7.5.3",
|
|
"@types/ssri": "^7.1.5",
|
|
"nock": "13.3.4",
|
|
"path-exists": "^4.0.0",
|
|
"tempy": "^1.0.1"
|
|
},
|
|
"funding": "https://opencollective.com/pnpm",
|
|
"exports": {
|
|
".": "./lib/index.js"
|
|
}
|
|
}
|