Comparing version 9.7.0 to 9.7.1
{ | ||
"name": "isexe", | ||
"version": "3.1.1", | ||
"version": "2.0.0", | ||
"description": "Minimal module to check if a file is executable.", | ||
"main": "./dist/cjs/index.js", | ||
"module": "./dist/mjs/index.js", | ||
"types": "./dist/cjs/index.js", | ||
"files": [ | ||
"dist" | ||
], | ||
"exports": { | ||
".": { | ||
"import": { | ||
"types": "./dist/mjs/index.d.ts", | ||
"default": "./dist/mjs/index.js" | ||
}, | ||
"require": { | ||
"types": "./dist/cjs/index.d.ts", | ||
"default": "./dist/cjs/index.js" | ||
} | ||
}, | ||
"./posix": { | ||
"import": { | ||
"types": "./dist/mjs/posix.d.ts", | ||
"default": "./dist/mjs/posix.js" | ||
}, | ||
"require": { | ||
"types": "./dist/cjs/posix.d.ts", | ||
"default": "./dist/cjs/posix.js" | ||
} | ||
}, | ||
"./win32": { | ||
"import": { | ||
"types": "./dist/mjs/win32.d.ts", | ||
"default": "./dist/mjs/win32.js" | ||
}, | ||
"require": { | ||
"types": "./dist/cjs/win32.d.ts", | ||
"default": "./dist/cjs/win32.js" | ||
} | ||
}, | ||
"./package.json": "./package.json" | ||
"main": "index.js", | ||
"directories": { | ||
"test": "test" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^20.4.5", | ||
"@types/tap": "^15.0.8", | ||
"c8": "^8.0.1", | ||
"mkdirp": "^0.5.1", | ||
"prettier": "^2.8.8", | ||
"rimraf": "^2.5.0", | ||
"sync-content": "^1.0.2", | ||
"tap": "^16.3.8", | ||
"ts-node": "^10.9.1", | ||
"typedoc": "^0.24.8", | ||
"typescript": "^5.1.6" | ||
"tap": "^10.3.0" | ||
}, | ||
"scripts": { | ||
"test": "tap test/*.js --100", | ||
"preversion": "npm test", | ||
"postversion": "npm publish", | ||
"prepublishOnly": "git push origin --follow-tags", | ||
"prepare": "tsc -p tsconfig/cjs.json && tsc -p tsconfig/esm.json && bash ./scripts/fixup.sh", | ||
"pretest": "npm run prepare", | ||
"presnap": "npm run prepare", | ||
"test": "c8 tap", | ||
"snap": "c8 tap", | ||
"format": "prettier --write . --loglevel warn --ignore-path ../../.prettierignore --cache", | ||
"typedoc": "typedoc --tsconfig tsconfig/esm.json ./src/*.ts" | ||
"postpublish": "git push origin --all; git push origin --tags" | ||
}, | ||
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)", | ||
"license": "ISC", | ||
"tap": { | ||
"coverage": false, | ||
"node-arg": [ | ||
"--enable-source-maps", | ||
"--no-warnings", | ||
"--loader", | ||
"ts-node/esm" | ||
], | ||
"ts": false | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/isaacs/isexe.git" | ||
}, | ||
"prettier": { | ||
"semi": false, | ||
"printWidth": 75, | ||
"tabWidth": 2, | ||
"useTabs": false, | ||
"singleQuote": true, | ||
"jsxSingleQuote": false, | ||
"bracketSameLine": true, | ||
"arrowParens": "avoid", | ||
"endOfLine": "lf" | ||
"keywords": [], | ||
"bugs": { | ||
"url": "https://github.com/isaacs/isexe/issues" | ||
}, | ||
"repository": "https://github.com/isaacs/isexe", | ||
"engines": { | ||
"node": ">=16" | ||
} | ||
"homepage": "https://github.com/isaacs/isexe#readme" | ||
} |
{ | ||
"author": "GitHub Inc.", | ||
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me)", | ||
"name": "which", | ||
"description": "Like which(1) unix command. Find the first instance of an executable in the PATH.", | ||
"version": "4.0.0", | ||
"version": "2.0.2", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/npm/node-which.git" | ||
"url": "git://github.com/isaacs/node-which.git" | ||
}, | ||
"main": "lib/index.js", | ||
"main": "which.js", | ||
"bin": { | ||
"node-which": "./bin/which.js" | ||
"node-which": "./bin/node-which" | ||
}, | ||
"license": "ISC", | ||
"dependencies": { | ||
"isexe": "^3.1.1" | ||
"isexe": "^2.0.0" | ||
}, | ||
"devDependencies": { | ||
"@npmcli/eslint-config": "^4.0.0", | ||
"@npmcli/template-oss": "4.18.0", | ||
"tap": "^16.3.0" | ||
"mkdirp": "^0.5.0", | ||
"rimraf": "^2.6.2", | ||
"tap": "^14.6.9" | ||
}, | ||
"scripts": { | ||
"test": "tap", | ||
"lint": "eslint \"**/*.js\"", | ||
"postlint": "template-oss-check", | ||
"template-oss-apply": "template-oss-apply --force", | ||
"lintfix": "npm run lint -- --fix", | ||
"snap": "tap", | ||
"posttest": "npm run lint" | ||
"preversion": "npm test", | ||
"postversion": "npm publish", | ||
"prepublish": "npm run changelog", | ||
"prechangelog": "bash gen-changelog.sh", | ||
"changelog": "git add CHANGELOG.md", | ||
"postchangelog": "git commit -m 'update changelog - '${npm_package_version}", | ||
"postpublish": "git push origin --follow-tags" | ||
}, | ||
"files": [ | ||
"bin/", | ||
"lib/" | ||
"which.js", | ||
"bin/node-which" | ||
], | ||
"tap": { | ||
"check-coverage": true, | ||
"nyc-arg": [ | ||
"--exclude", | ||
"tap-snapshots/**" | ||
] | ||
"check-coverage": true | ||
}, | ||
"engines": { | ||
"node": "^16.13.0 || >=18.0.0" | ||
}, | ||
"templateOSS": { | ||
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", | ||
"ciVersions": [ | ||
"16.13.0", | ||
"16.x", | ||
"18.0.0", | ||
"18.x" | ||
], | ||
"version": "4.18.0", | ||
"publish": "true" | ||
"node": ">= 8" | ||
} | ||
} |
{ | ||
"name": "pnpm", | ||
"description": "Fast, disk space efficient package manager", | ||
"version": "9.7.0", | ||
"version": "9.7.1", | ||
"bin": { | ||
@@ -43,3 +43,3 @@ "pnpm": "bin/pnpm.cjs", | ||
"@pnpm/lockfile.types": "workspace:*", | ||
"@pnpm/logger": "catalog:", | ||
"@pnpm/logger": "workspace:*", | ||
"@pnpm/modules-yaml": "workspace:*", | ||
@@ -46,0 +46,0 @@ "@pnpm/nopt": "catalog:", |
@@ -184,7 +184,2 @@ [简体中文](https://pnpm.io/zh/) | | ||
</td> | ||
<td align="center" valign="middle"> | ||
<a href="https://vpsserver.com/en-us/?utm_source=pnpm&utm_medium=readme" target="_blank"> | ||
<img src="https://pnpm.io/img/users/vpsserver.svg" width="180" /> | ||
</a> | ||
</td> | ||
</tr> | ||
@@ -191,0 +186,0 @@ </tbody> |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
17664481
78480
252