mirror of
https://github.com/pnpm/pnpm.git
synced 2025-12-23 23:29:17 -05:00
72 lines
2.0 KiB
JSON
72 lines
2.0 KiB
JSON
{
|
|
"name": "@pnpm/mount-modules",
|
|
"version": "1001.0.34",
|
|
"description": "Mounts a node_modules directory with FUSE",
|
|
"keywords": [
|
|
"pnpm",
|
|
"pnpm11",
|
|
"lockfile",
|
|
"shrinkwrap"
|
|
],
|
|
"license": "MIT",
|
|
"funding": "https://opencollective.com/pnpm",
|
|
"repository": "https://github.com/pnpm/pnpm/tree/main/modules-mounter/daemon",
|
|
"homepage": "https://github.com/pnpm/pnpm/tree/main/modules-mounter/daemon#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",
|
|
"bin"
|
|
],
|
|
"bin": "bin/mount-modules.js",
|
|
"scripts": {
|
|
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
"test": "pnpm run compile && pnpm run _test",
|
|
"prepublishOnly": "pnpm run compile",
|
|
"pretest": "node ../../pnpm/dist/pnpm.mjs install --dir=test/__fixtures__/simple --config.enableGlobalVirtualStore=false",
|
|
"_test": "pnpm pretest && cross-env NODE_OPTIONS=--experimental-vm-modules jest",
|
|
"compile": "tsgo --build && pnpm run lint --fix"
|
|
},
|
|
"dependencies": {
|
|
"@pnpm/config": "workspace:*",
|
|
"@pnpm/dependency-path": "workspace:*",
|
|
"@pnpm/fs.v8-file": "workspace:*",
|
|
"@pnpm/lockfile.fs": "workspace:*",
|
|
"@pnpm/lockfile.utils": "workspace:*",
|
|
"@pnpm/logger": "workspace:*",
|
|
"@pnpm/store-path": "workspace:*",
|
|
"@pnpm/store.cafs": "workspace:*",
|
|
"@pnpm/types": "workspace:*",
|
|
"hyperdrive-schemas": "catalog:",
|
|
"normalize-path": "catalog:"
|
|
},
|
|
"peerDependencies": {
|
|
"@pnpm/logger": "catalog:"
|
|
},
|
|
"optionalDependencies": {
|
|
"fuse-native": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@jest/globals": "catalog:",
|
|
"@pnpm/constants": "workspace:*",
|
|
"@pnpm/logger": "workspace:*",
|
|
"@pnpm/mount-modules": "workspace:*",
|
|
"@types/normalize-path": "catalog:",
|
|
"rimraf": "catalog:"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.19"
|
|
},
|
|
"jest": {
|
|
"preset": "@pnpm/jest-config"
|
|
}
|
|
}
|