mirror of
https://github.com/pnpm/pnpm.git
synced 2025-12-23 23:29:17 -05:00
62 lines
1.8 KiB
JSON
62 lines
1.8 KiB
JSON
{
|
|
"name": "@pnpm/list",
|
|
"version": "1000.1.3",
|
|
"description": "List installed packages in a symlinked `node_modules`",
|
|
"keywords": [
|
|
"pnpm",
|
|
"pnpm11",
|
|
"list",
|
|
"ls"
|
|
],
|
|
"license": "MIT",
|
|
"funding": "https://opencollective.com/pnpm",
|
|
"repository": "https://github.com/pnpm/pnpm/tree/main/reviewing/list",
|
|
"homepage": "https://github.com/pnpm/pnpm/tree/main/reviewing/list#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": {
|
|
"fix": "tslint -c tslint.json src/**/*.ts test/**/*.ts --fix",
|
|
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
"prepareFixtures": "cd test && node ../../pnpm recursive install --no-link-workspace-packages --no-shared-workspace-lockfile -f && cd ..",
|
|
"prepublishOnly": "pnpm run compile",
|
|
"pretest": "pnpm run --filter dependencies-hierarchy pretest",
|
|
"_test": "pnpm pretest && cross-env NODE_OPTIONS=--experimental-vm-modules jest",
|
|
"test": "pnpm run compile && pnpm run _test",
|
|
"compile": "tsc --build && pnpm run lint --fix"
|
|
},
|
|
"dependencies": {
|
|
"@pnpm/read-package-json": "workspace:*",
|
|
"@pnpm/read-project-manifest": "workspace:*",
|
|
"@pnpm/reviewing.dependencies-hierarchy": "workspace:*",
|
|
"@pnpm/types": "workspace:*",
|
|
"archy": "catalog:",
|
|
"chalk": "catalog:",
|
|
"cli-columns": "catalog:",
|
|
"p-limit": "catalog:",
|
|
"ramda": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@pnpm/list": "workspace:*",
|
|
"@pnpm/test-fixtures": "workspace:*",
|
|
"@types/archy": "catalog:",
|
|
"@types/ramda": "catalog:"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.19"
|
|
},
|
|
"jest": {
|
|
"preset": "@pnpm/jest-config"
|
|
}
|
|
}
|