mirror of
https://github.com/pnpm/pnpm.git
synced 2025-12-23 23:29:17 -05:00
45 lines
1011 B
JSON
45 lines
1011 B
JSON
{
|
|
"name": "@pnpm/exec.pnpm-cli-runner",
|
|
"version": "1000.0.1",
|
|
"description": "Runs pnpm CLI",
|
|
"keywords": [
|
|
"pnpm",
|
|
"pnpm11"
|
|
],
|
|
"license": "MIT",
|
|
"funding": "https://opencollective.com/pnpm",
|
|
"repository": "https://github.com/pnpm/pnpm/tree/main/exec/pnpm-cli-runner",
|
|
"homepage": "https://github.com/pnpm/pnpm/tree/main/exec/pnpm-cli-runner#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": {
|
|
"lint": "eslint \"src/**/*.ts\"",
|
|
"test": "pnpm run compile",
|
|
"prepublishOnly": "pnpm run compile",
|
|
"compile": "tsgo --build && pnpm run lint --fix"
|
|
},
|
|
"dependencies": {
|
|
"execa": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@pnpm/exec.pnpm-cli-runner": "workspace:*"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.19"
|
|
},
|
|
"jest": {
|
|
"preset": "@pnpm/jest-config"
|
|
}
|
|
}
|