mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-29 12:31:52 -04:00
42 lines
1.0 KiB
JSON
42 lines
1.0 KiB
JSON
{
|
|
"name": "@pnpm/resolve-workspace-range",
|
|
"version": "6.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": [
|
|
"pnpm9"
|
|
],
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=18.12"
|
|
},
|
|
"repository": "https://github.com/pnpm/pnpm/blob/main/workspace/resolve-workspace-range",
|
|
"homepage": "https://github.com/pnpm/pnpm/blob/main/workspace/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.6.0"
|
|
},
|
|
"devDependencies": {
|
|
"@pnpm/resolve-workspace-range": "workspace:*",
|
|
"@types/semver": "7.5.3"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/pnpm/pnpm/issues"
|
|
},
|
|
"funding": "https://opencollective.com/pnpm",
|
|
"exports": {
|
|
".": "./lib/index.js"
|
|
}
|
|
}
|