mirror of
https://github.com/pnpm/pnpm.git
synced 2026-01-25 23:38:23 -05:00
31 lines
811 B
JSON
31 lines
811 B
JSON
{
|
|
"name": "@pnpm/command",
|
|
"version": "2.0.0",
|
|
"description": "Types and utils for pnpm commands",
|
|
"main": "lib/index.js",
|
|
"typings": "lib/index.d.ts",
|
|
"files": [
|
|
"lib",
|
|
"!*.map"
|
|
],
|
|
"engines": {
|
|
"node": ">=12.17"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint -c ../../eslint.json src/**/*.ts",
|
|
"test": "pnpm run compile",
|
|
"prepublishOnly": "pnpm run compile",
|
|
"compile": "rimraf lib tsconfig.tsbuildinfo && tsc --build && pnpm run lint -- --fix"
|
|
},
|
|
"repository": "https://github.com/pnpm/pnpm/blob/master/packages/command",
|
|
"keywords": [
|
|
"pnpm"
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/pnpm/pnpm/issues"
|
|
},
|
|
"homepage": "https://github.com/pnpm/pnpm/blob/master/packages/command#readme",
|
|
"funding": "https://opencollective.com/pnpm"
|
|
}
|