mirror of
https://github.com/pnpm/pnpm.git
synced 2026-05-11 09:28:24 -04:00
41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
{
|
|
"name": "@pnpm/global-bin-dir",
|
|
"version": "3.0.0",
|
|
"description": "Finds a directory that is in PATH and we have permission to write to i",
|
|
"main": "lib/index.js",
|
|
"typings": "lib/index.d.ts",
|
|
"files": [
|
|
"lib",
|
|
"!*.map"
|
|
],
|
|
"engines": {
|
|
"node": ">=12.17"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint src/**/*.ts test/**/*.ts",
|
|
"test": "pnpm run compile && pnpm run _test",
|
|
"prepublishOnly": "pnpm run compile",
|
|
"compile": "rimraf lib tsconfig.tsbuildinfo && tsc --build && pnpm run lint -- --fix",
|
|
"_test": "jest"
|
|
},
|
|
"repository": "https://github.com/pnpm/pnpm/blob/master/packages/global-bin-dir",
|
|
"keywords": [
|
|
"pnpm6",
|
|
"pnpm"
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/pnpm/pnpm/issues"
|
|
},
|
|
"homepage": "https://github.com/pnpm/pnpm/blob/master/packages/global-bin-dir#readme",
|
|
"funding": "https://opencollective.com/pnpm",
|
|
"dependencies": {
|
|
"@pnpm/error": "workspace:2.0.0",
|
|
"can-write-to-dir": "^1.1.1",
|
|
"path-name": "^1.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"is-windows": "^1.0.2"
|
|
}
|
|
}
|