mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-23 17:41:50 -04:00
42 lines
1.0 KiB
JSON
42 lines
1.0 KiB
JSON
{
|
|
"name": "@pnpm/resolve-workspace-range",
|
|
"version": "3.0.0",
|
|
"description": "Resolves a range from versions that are present inside a workspace",
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"files": [
|
|
"lib",
|
|
"!*.map"
|
|
],
|
|
"keywords": [
|
|
"pnpm7"
|
|
],
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=14.19"
|
|
},
|
|
"repository": "https://github.com/pnpm/pnpm/blob/main/packages/resolve-workspace-range",
|
|
"homepage": "https://github.com/pnpm/pnpm/blob/main/packages/resolve-workspace-range#readme",
|
|
"scripts": {
|
|
"start": "tsc --watch",
|
|
"test": "pnpm run compile",
|
|
"lint": "eslint src/**/*.ts",
|
|
"prepublishOnly": "pnpm run compile",
|
|
"compile": "tsc --build && pnpm run lint --fix"
|
|
},
|
|
"dependencies": {
|
|
"semver": "^7.3.4"
|
|
},
|
|
"devDependencies": {
|
|
"@pnpm/resolve-workspace-range": "workspace:3.0.0",
|
|
"@types/semver": "^7.3.4"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/pnpm/pnpm/issues"
|
|
},
|
|
"funding": "https://opencollective.com/pnpm",
|
|
"exports": {
|
|
".": "./lib/index.js"
|
|
}
|
|
}
|