mirror of
https://github.com/pnpm/pnpm.git
synced 2025-12-24 07:38:12 -05:00
53 lines
1.3 KiB
JSON
53 lines
1.3 KiB
JSON
{
|
|
"name": "@pnpm/patching.apply-patch",
|
|
"version": "1000.0.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": [
|
|
"pnpm10",
|
|
"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": ">=5.1.0 <1001.0.0"
|
|
},
|
|
"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"
|
|
},
|
|
"jest": {
|
|
"preset": "@pnpm/jest-config"
|
|
}
|
|
}
|