-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 828 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 828 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "custompatch",
"version": "1.1.9",
"description": "Tool for patching buggy NPM packages instead of forking them",
"author": "IVO GELOV",
"private": false,
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/tmcdos/custompatch.git"
},
"bin": {
"custompatch": "index.mjs"
},
"scripts": {
"build": "esbuild ./src/index.js --bundle --platform=node --format=esm --target=es2020,node16 --packages=external --outfile=index.mjs",
"prepare": "npm run build"
},
"engines": {
"node": ">= 16.20.0",
"npm": ">= 9.6.7"
},
"keywords": [
"patching",
"buggy",
"packages"
],
"dependencies": {
"commander": "^12.1.0",
"diff": "^8.0.2",
"pacote": "^18.0.6"
},
"devDependencies": {
"esbuild": "0.24.2"
}
}