mirror of
https://github.com/pnpm/pnpm.git
synced 2026-01-01 11:38:21 -05:00
56 lines
1.4 KiB
JSON
56 lines
1.4 KiB
JSON
{
|
|
"name": "@pnpm/plugin-commands-setup",
|
|
"version": "1000.0.1",
|
|
"description": "pnpm commands for setting up pnpm",
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"files": [
|
|
"lib",
|
|
"!*.map"
|
|
],
|
|
"engines": {
|
|
"node": ">=18.12"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
"_test": "jest",
|
|
"test": "pnpm run compile && pnpm run _test",
|
|
"prepublishOnly": "pnpm run compile",
|
|
"compile": "tsc --build && pnpm run lint --fix"
|
|
},
|
|
"repository": "https://github.com/pnpm/pnpm/blob/main/packages/plugin-commands-setup",
|
|
"keywords": [
|
|
"pnpm10",
|
|
"pnpm",
|
|
"setup"
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/pnpm/pnpm/issues"
|
|
},
|
|
"homepage": "https://github.com/pnpm/pnpm/blob/main/packages/plugin-commands-setup#readme",
|
|
"dependencies": {
|
|
"@pnpm/cli-meta": "workspace:*",
|
|
"@pnpm/cli-utils": "workspace:*",
|
|
"@pnpm/os.env.path-extender": "catalog:",
|
|
"@zkochan/rimraf": "catalog:",
|
|
"render-help": "catalog:"
|
|
},
|
|
"funding": "https://opencollective.com/pnpm",
|
|
"peerDependencies": {
|
|
"@pnpm/logger": ">=5.1.0 <1001.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@pnpm/error": "workspace:*",
|
|
"@pnpm/logger": "workspace:*",
|
|
"@pnpm/plugin-commands-setup": "workspace:*",
|
|
"@pnpm/prepare": "workspace:*"
|
|
},
|
|
"exports": {
|
|
".": "./lib/index.js"
|
|
},
|
|
"jest": {
|
|
"preset": "@pnpm/jest-config"
|
|
}
|
|
}
|