mirror of
https://github.com/pnpm/pnpm.git
synced 2026-01-05 21:48:26 -05:00
76 lines
2.0 KiB
JSON
76 lines
2.0 KiB
JSON
{
|
|
"name": "@pnpm/lockfile.fs",
|
|
"version": "1001.1.15",
|
|
"description": "Read/write pnpm-lock.yaml files",
|
|
"keywords": [
|
|
"pnpm",
|
|
"pnpm10",
|
|
"lockfile",
|
|
"shrinkwrap"
|
|
],
|
|
"license": "MIT",
|
|
"funding": "https://opencollective.com/pnpm",
|
|
"repository": "https://github.com/pnpm/pnpm/blob/main/lockfile/fs",
|
|
"homepage": "https://github.com/pnpm/pnpm/blob/main/lockfile/fs#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/pnpm/pnpm/issues"
|
|
},
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"exports": {
|
|
".": "./lib/index.js"
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"!*.map"
|
|
],
|
|
"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",
|
|
"start": "tsc --watch"
|
|
},
|
|
"dependencies": {
|
|
"@pnpm/constants": "workspace:*",
|
|
"@pnpm/dependency-path": "workspace:*",
|
|
"@pnpm/error": "workspace:*",
|
|
"@pnpm/git-utils": "workspace:*",
|
|
"@pnpm/lockfile.merger": "workspace:*",
|
|
"@pnpm/lockfile.types": "workspace:*",
|
|
"@pnpm/lockfile.utils": "workspace:*",
|
|
"@pnpm/object.key-sorting": "workspace:*",
|
|
"@pnpm/types": "workspace:*",
|
|
"@zkochan/rimraf": "catalog:",
|
|
"comver-to-semver": "catalog:",
|
|
"js-yaml": "catalog:",
|
|
"normalize-path": "catalog:",
|
|
"ramda": "catalog:",
|
|
"semver": "catalog:",
|
|
"strip-bom": "catalog:",
|
|
"write-file-atomic": "catalog:"
|
|
},
|
|
"peerDependencies": {
|
|
"@pnpm/logger": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@pnpm/lockfile.fs": "workspace:*",
|
|
"@pnpm/logger": "workspace:*",
|
|
"@types/js-yaml": "catalog:",
|
|
"@types/normalize-path": "catalog:",
|
|
"@types/ramda": "catalog:",
|
|
"@types/semver": "catalog:",
|
|
"@types/write-file-atomic": "catalog:",
|
|
"tempy": "catalog:",
|
|
"write-yaml-file": "catalog:",
|
|
"yaml-tag": "catalog:"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.12"
|
|
},
|
|
"jest": {
|
|
"preset": "@pnpm/jest-config"
|
|
}
|
|
}
|