Files
pnpm/installing/deps-installer/package.json
Zoltan Kochan ed6bae5b9c refactor: remove legacy metadata directory constants, update remaining tests
- Remove ABBREVIATED_META_DIR, FULL_META_DIR, FULL_FILTERED_META_DIR
  from @pnpm/constants — no longer used
- Update lockfileOnly test to check MetadataCache DB instead of files
- Update prune to also remove metadata.db and its WAL/SHM files
2026-04-01 14:55:19 +02:00

171 lines
5.7 KiB
JSON

{
"name": "@pnpm/installing.deps-installer",
"version": "1012.0.1",
"description": "Fast, disk space efficient installation engine",
"keywords": [
"pnpm",
"pnpm11",
"dependencies",
"dependency manager",
"efficient",
"fast",
"hardlinks",
"install",
"installer",
"link",
"lockfile",
"modules",
"npm",
"package manager",
"package.json",
"packages",
"prune",
"rapid",
"remove",
"shrinkwrap",
"symlinks",
"uninstall"
],
"license": "MIT",
"funding": "https://opencollective.com/pnpm",
"repository": "https://github.com/pnpm/pnpm/tree/main/installing/deps-installer",
"homepage": "https://github.com/pnpm/pnpm/tree/main/installing/deps-installer#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"
],
"directories": {
"test": "test"
},
"scripts": {
"start": "tsgo --watch",
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
"test-with-preview": "preview && pnpm run test:e2e",
"test": "pn compile && pn .test",
"prepublishOnly": "pn compile",
"compile": "tsgo --build && pn lint --fix",
".test": "cross-env PNPM_REGISTRY_MOCK_PORT=7769 NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules --disable-warning=ExperimentalWarning --disable-warning=DEP0169\" jest"
},
"dependencies": {
"@pnpm/bins.linker": "workspace:*",
"@pnpm/bins.remover": "workspace:*",
"@pnpm/building.after-install": "workspace:*",
"@pnpm/building.during-install": "workspace:*",
"@pnpm/building.policy": "workspace:*",
"@pnpm/catalogs.protocol-parser": "workspace:*",
"@pnpm/catalogs.resolver": "workspace:*",
"@pnpm/catalogs.types": "workspace:*",
"@pnpm/config.matcher": "workspace:*",
"@pnpm/config.normalize-registries": "workspace:*",
"@pnpm/config.parse-overrides": "workspace:*",
"@pnpm/constants": "workspace:*",
"@pnpm/core-loggers": "workspace:*",
"@pnpm/crypto.hash": "workspace:*",
"@pnpm/crypto.object-hasher": "workspace:*",
"@pnpm/deps.graph-hasher": "workspace:*",
"@pnpm/deps.graph-sequencer": "workspace:*",
"@pnpm/deps.path": "workspace:*",
"@pnpm/error": "workspace:*",
"@pnpm/exec.lifecycle": "workspace:*",
"@pnpm/fs.read-modules-dir": "workspace:*",
"@pnpm/fs.symlink-dependency": "workspace:*",
"@pnpm/hooks.read-package-hook": "workspace:*",
"@pnpm/hooks.types": "workspace:*",
"@pnpm/installing.context": "workspace:*",
"@pnpm/installing.deps-resolver": "workspace:*",
"@pnpm/installing.deps-restorer": "workspace:*",
"@pnpm/installing.linking.direct-dep-linker": "workspace:*",
"@pnpm/installing.linking.hoist": "workspace:*",
"@pnpm/installing.linking.modules-cleaner": "workspace:*",
"@pnpm/installing.modules-yaml": "workspace:*",
"@pnpm/installing.package-requester": "workspace:*",
"@pnpm/lockfile.filtering": "workspace:*",
"@pnpm/lockfile.fs": "workspace:*",
"@pnpm/lockfile.preferred-versions": "workspace:*",
"@pnpm/lockfile.pruner": "workspace:*",
"@pnpm/lockfile.settings-checker": "workspace:*",
"@pnpm/lockfile.to-pnp": "workspace:*",
"@pnpm/lockfile.utils": "workspace:*",
"@pnpm/lockfile.verification": "workspace:*",
"@pnpm/lockfile.walker": "workspace:*",
"@pnpm/npm-package-arg": "catalog:",
"@pnpm/patching.config": "workspace:*",
"@pnpm/pkg-manifest.utils": "workspace:*",
"@pnpm/resolving.parse-wanted-dependency": "workspace:*",
"@pnpm/resolving.resolver-base": "workspace:*",
"@pnpm/store.controller-types": "workspace:*",
"@pnpm/types": "workspace:*",
"@pnpm/util.lex-comparator": "catalog:",
"@pnpm/workspace.project-manifest-reader": "workspace:*",
"@zkochan/rimraf": "catalog:",
"enquirer": "catalog:",
"is-inner-link": "catalog:",
"is-subdir": "catalog:",
"load-json-file": "catalog:",
"normalize-path": "catalog:",
"p-filter": "catalog:",
"p-limit": "catalog:",
"path-exists": "catalog:",
"ramda": "catalog:",
"run-groups": "catalog:",
"semver": "catalog:"
},
"peerDependencies": {
"@pnpm/logger": "catalog:",
"@pnpm/worker": "workspace:^"
},
"devDependencies": {
"@jest/globals": "catalog:",
"@pnpm/assert-project": "workspace:*",
"@pnpm/assert-store": "workspace:*",
"@pnpm/cache.metadata": "workspace:*",
"@pnpm/installing.deps-installer": "workspace:*",
"@pnpm/lockfile.types": "workspace:*",
"@pnpm/logger": "workspace:*",
"@pnpm/network.git-utils": "workspace:*",
"@pnpm/pkg-manifest.reader": "workspace:*",
"@pnpm/prepare": "workspace:*",
"@pnpm/registry-mock": "catalog:",
"@pnpm/store.cafs": "workspace:*",
"@pnpm/store.index": "workspace:*",
"@pnpm/store.path": "workspace:*",
"@pnpm/test-fixtures": "workspace:*",
"@pnpm/test-ipc-server": "workspace:*",
"@pnpm/testing.mock-agent": "workspace:*",
"@pnpm/testing.temp-store": "workspace:*",
"@types/fs-extra": "catalog:",
"@types/is-windows": "catalog:",
"@types/normalize-path": "catalog:",
"@types/ramda": "catalog:",
"@types/semver": "catalog:",
"@yarnpkg/core": "catalog:",
"ci-info": "catalog:",
"deep-require-cwd": "catalog:",
"execa": "catalog:",
"exists-link": "catalog:",
"is-windows": "catalog:",
"nock": "catalog:",
"path-name": "catalog:",
"read-yaml-file": "catalog:",
"resolve-link-target": "catalog:",
"symlink-dir": "catalog:",
"write-json-file": "catalog:",
"write-yaml-file": "catalog:"
},
"engines": {
"node": ">=22.13"
},
"jest": {
"preset": "@pnpm/jest-config/with-registry"
}
}