mirror of
https://github.com/pnpm/pnpm.git
synced 2025-12-25 08:08:14 -05:00
50 lines
1.2 KiB
JSON
50 lines
1.2 KiB
JSON
{
|
|
"name": "@pnpm/patching.apply-patch",
|
|
"version": "3.1.1",
|
|
"description": "Apply a patch to a directory",
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"files": [
|
|
"lib",
|
|
"!*.map"
|
|
],
|
|
"engines": {
|
|
"node": ">=18.12"
|
|
},
|
|
"scripts": {
|
|
"_test": "jest",
|
|
"test": "pnpm run compile && pnpm run _test",
|
|
"prepublishOnly": "pnpm run compile",
|
|
"compile": "tsc --build && pnpm run lint --fix",
|
|
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\""
|
|
},
|
|
"repository": "https://github.com/pnpm/pnpm/blob/main/patching/apply-patch",
|
|
"keywords": [
|
|
"pnpm9",
|
|
"pnpm",
|
|
"patch"
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/pnpm/pnpm/issues"
|
|
},
|
|
"homepage": "https://github.com/pnpm/pnpm/blob/main/patching/apply-patch#readme",
|
|
"peerDependencies": {
|
|
"@pnpm/logger": "workspace:*"
|
|
},
|
|
"dependencies": {
|
|
"@pnpm/error": "workspace:*",
|
|
"@pnpm/patch-package": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@pnpm/logger": "workspace:*",
|
|
"@pnpm/patching.apply-patch": "workspace:*",
|
|
"@pnpm/prepare": "workspace:*",
|
|
"@pnpm/test-fixtures": "workspace:*"
|
|
},
|
|
"funding": "https://opencollective.com/pnpm",
|
|
"exports": {
|
|
".": "./lib/index.js"
|
|
}
|
|
}
|