mirror of
https://github.com/pnpm/pnpm.git
synced 2025-12-31 11:08:12 -05:00
42 lines
957 B
JSON
42 lines
957 B
JSON
{
|
|
"name": "@pnpm/run-npm",
|
|
"version": "7.0.0",
|
|
"description": "Runs the npm CLI",
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"files": [
|
|
"lib",
|
|
"!*.map"
|
|
],
|
|
"engines": {
|
|
"node": ">=18.12"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint \"src/**/*.ts\"",
|
|
"test": "pnpm run compile",
|
|
"prepublishOnly": "pnpm run compile",
|
|
"compile": "tsc --build && pnpm run lint --fix"
|
|
},
|
|
"repository": "https://github.com/pnpm/pnpm/blob/main/exec/run-npm",
|
|
"keywords": [
|
|
"pnpm9"
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/pnpm/pnpm/issues"
|
|
},
|
|
"homepage": "https://github.com/pnpm/pnpm/blob/main/exec/run-npm#readme",
|
|
"devDependencies": {
|
|
"@pnpm/run-npm": "workspace:*",
|
|
"@types/cross-spawn": "catalog:"
|
|
},
|
|
"dependencies": {
|
|
"cross-spawn": "catalog:",
|
|
"path-name": "catalog:"
|
|
},
|
|
"funding": "https://opencollective.com/pnpm",
|
|
"exports": {
|
|
".": "./lib/index.js"
|
|
}
|
|
}
|