Files
pnpm/lockfile/fs/package.json
2026-01-14 01:18:13 +01:00

78 lines
2.1 KiB
JSON

{
"name": "@pnpm/lockfile.fs",
"version": "1001.1.21",
"description": "Read/write pnpm-lock.yaml files",
"keywords": [
"pnpm",
"pnpm11",
"lockfile",
"shrinkwrap"
],
"license": "MIT",
"funding": "https://opencollective.com/pnpm",
"repository": "https://github.com/pnpm/pnpm/tree/main/lockfile/fs",
"homepage": "https://github.com/pnpm/pnpm/tree/main/lockfile/fs#readme",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": "./lib/index.js"
},
"files": [
"lib",
"!*.map"
],
"scripts": {
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
"_test": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest",
"test": "pnpm run compile && pnpm run _test",
"prepublishOnly": "pnpm run compile",
"compile": "tsgo --build && pnpm run lint --fix",
"start": "tsgo --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": {
"@jest/globals": "catalog:",
"@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": ">=20.19"
},
"jest": {
"preset": "@pnpm/jest-config"
}
}