mirror of
https://github.com/pnpm/pnpm.git
synced 2026-01-27 16:28:59 -05:00
33 lines
883 B
JSON
33 lines
883 B
JSON
{
|
|
"name": "@pnpm/error",
|
|
"version": "1.4.0",
|
|
"description": "An error class for pnpm errors",
|
|
"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/error",
|
|
"keywords": [
|
|
"pnpm",
|
|
"error"
|
|
],
|
|
"author": "Zoltan Kochan <z@kochan.io> (https://www.kochan.io/)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/pnpm/pnpm/issues"
|
|
},
|
|
"homepage": "https://github.com/pnpm/pnpm/blob/master/packages/error#readme",
|
|
"funding": "https://opencollective.com/pnpm"
|
|
}
|