Files
pnpm/packages/make-dedicated-lockfile/package.json
2023-03-24 15:52:20 +02:00

57 lines
1.6 KiB
JSON

{
"name": "@pnpm/make-dedicated-lockfile",
"version": "0.5.0",
"description": "Creates a dedicated lockfile for a subset of workspace projects",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": "./bin/make-dedicated-lockfile.js",
"files": [
"lib",
"!*.map",
"bin"
],
"engines": {
"node": ">=16.14"
},
"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/packages/make-dedicated-lockfile",
"keywords": [
"pnpm8",
"pnpm",
"make-dedicated-lockfile"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"homepage": "https://github.com/pnpm/pnpm/blob/main/packages/make-dedicated-lockfile#readme",
"dependencies": {
"@pnpm/error": "workspace:*",
"@pnpm/exec": "^2.0.0",
"@pnpm/exportable-manifest": "workspace:*",
"@pnpm/find-workspace-dir": "workspace:*",
"@pnpm/lockfile-file": "workspace:*",
"@pnpm/logger": "^5.0.0",
"@pnpm/prune-lockfile": "workspace:*",
"@pnpm/read-project-manifest": "workspace:*",
"@pnpm/types": "workspace:*",
"ramda": "npm:@pnpm/ramda@0.28.1",
"rename-overwrite": "^4.0.3"
},
"funding": "https://opencollective.com/pnpm",
"devDependencies": {
"@pnpm/make-dedicated-lockfile": "workspace:*",
"@pnpm/test-fixtures": "workspace:*",
"@types/ramda": "0.28.20"
},
"exports": {
".": "./lib/index.js"
}
}