Files
pnpm/completion/plugin-commands-completion/package.json
2025-11-13 15:44:27 +01:00

60 lines
1.7 KiB
JSON

{
"name": "@pnpm/plugin-commands-completion",
"version": "1000.0.32",
"description": "Commands for shell completions",
"keywords": [
"pnpm",
"pnpm11"
],
"license": "MIT",
"funding": "https://opencollective.com/pnpm",
"repository": "https://github.com/pnpm/pnpm/tree/main/completion/plugin-commands-completion",
"homepage": "https://github.com/pnpm/pnpm/tree/main/completion/plugin-commands-completion#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": {
"start": "tsc --watch",
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
"_test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"test": "pnpm run compile && pnpm run _test",
"prepublishOnly": "pnpm run compile",
"compile": "tsc --build && pnpm run lint --fix"
},
"dependencies": {
"@pnpm/cli-utils": "workspace:^",
"@pnpm/command": "workspace:^",
"@pnpm/error": "workspace:^",
"@pnpm/find-workspace-dir": "workspace:^",
"@pnpm/nopt": "catalog:",
"@pnpm/parse-cli-args": "workspace:^",
"@pnpm/tabtab": "catalog:",
"@pnpm/workspace.find-packages": "workspace:^",
"@pnpm/workspace.read-manifest": "workspace:^",
"ramda": "catalog:",
"render-help": "catalog:",
"split-cmd": "catalog:"
},
"devDependencies": {
"@jest/globals": "catalog:",
"@pnpm/plugin-commands-completion": "workspace:*",
"@types/ramda": "catalog:"
},
"engines": {
"node": ">=20.19"
},
"jest": {
"preset": "@pnpm/jest-config"
}
}