mirror of
https://github.com/pnpm/pnpm.git
synced 2025-12-30 10:38:13 -05:00
43 lines
1003 B
JSON
43 lines
1003 B
JSON
{
|
|
"name": "@pnpm/resolver-base",
|
|
"version": "13.0.4",
|
|
"description": "Types for pnpm-compatible resolvers",
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"files": [
|
|
"lib",
|
|
"!*.map"
|
|
],
|
|
"scripts": {
|
|
"start": "tsc --watch",
|
|
"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/resolving/resolver-base",
|
|
"keywords": [
|
|
"pnpm9",
|
|
"pnpm",
|
|
"resolver"
|
|
],
|
|
"engines": {
|
|
"node": ">=18.12"
|
|
},
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/pnpm/pnpm/blob/main/resolving/resolver-base#readme",
|
|
"dependencies": {
|
|
"@pnpm/types": "workspace:*"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/pnpm/pnpm/issues"
|
|
},
|
|
"funding": "https://opencollective.com/pnpm",
|
|
"devDependencies": {
|
|
"@pnpm/resolver-base": "workspace:*"
|
|
},
|
|
"exports": {
|
|
".": "./lib/index.js"
|
|
}
|
|
}
|