mirror of
https://github.com/pnpm/pnpm.git
synced 2026-01-25 23:38:23 -05:00
65 lines
1.7 KiB
JSON
65 lines
1.7 KiB
JSON
{
|
|
"name": "@pnpm/mount-modules",
|
|
"version": "0.2.22",
|
|
"description": "Mounts a node_modules directory with FUSE",
|
|
"main": "lib/index.js",
|
|
"bin": "bin/mount-modules.js",
|
|
"types": "lib/index.d.ts",
|
|
"engines": {
|
|
"node": ">=14.6"
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"!*.map",
|
|
"bin"
|
|
],
|
|
"scripts": {
|
|
"lint": "eslint src/**/*.ts test/**/*.ts",
|
|
"test": "pnpm run compile && pnpm run _test",
|
|
"prepublishOnly": "pnpm run compile",
|
|
"pretest": "pnpm install --dir=test/__fixtures__/simple",
|
|
"_test": "pnpm pretest && jest",
|
|
"compile": "tsc --build && pnpm run lint --fix"
|
|
},
|
|
"repository": "https://github.com/pnpm/pnpm/blob/main/packages/mount-modules",
|
|
"keywords": [
|
|
"pnpm7",
|
|
"pnpm",
|
|
"shrinkwrap",
|
|
"lockfile"
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/pnpm/pnpm/issues"
|
|
},
|
|
"homepage": "https://github.com/pnpm/pnpm/blob/main/packages/mount-modules#readme",
|
|
"peerDependencies": {
|
|
"@pnpm/logger": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@pnpm/logger": "^4.0.0",
|
|
"@pnpm/mount-modules": "workspace:*",
|
|
"@types/normalize-path": "^3.0.0",
|
|
"rimraf": "^3.0.2"
|
|
},
|
|
"dependencies": {
|
|
"@pnpm/cafs": "workspace:*",
|
|
"@pnpm/config": "workspace:*",
|
|
"@pnpm/lockfile-file": "workspace:*",
|
|
"@pnpm/lockfile-utils": "workspace:*",
|
|
"@pnpm/store-path": "workspace:*",
|
|
"@pnpm/types": "workspace:*",
|
|
"dependency-path": "workspace:*",
|
|
"hyperdrive-schemas": "^2.0.0",
|
|
"load-json-file": "^6.2.0",
|
|
"normalize-path": "^3.0.0"
|
|
},
|
|
"funding": "https://opencollective.com/pnpm",
|
|
"optionalDependencies": {
|
|
"fuse-native": "^2.2.6"
|
|
},
|
|
"exports": {
|
|
".": "./lib/index.js"
|
|
}
|
|
}
|