forked from tmcdos/custompatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.62 KB
/
package.json
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@smushytaco/custompatch",
"version": "1.0.8",
"description": "Tool for patching buggy NPM packages instead of forking them",
"type": "module",
"author": {
"name": "SmushyTaco",
"email": "[email protected]"
},
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/SmushyTaco/custompatch.git"
},
"bugs": {
"url": "https://github.com/SmushyTaco/custompatch/issues"
},
"bin": {
"custompatch": "dist/cli.mjs"
},
"scripts": {
"clean": "npx del-cli dist",
"build": "npm run clean && npx vite build",
"prepare": "npm run build",
"start": "node ./dist/cli.mjs"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=22.13.0",
"npm": ">=11.0.0"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"patching",
"buggy",
"packages"
],
"dependencies": {
"commander": "^13.0.0",
"diff": "^7.0.0",
"pacote": "^21.0.0",
"pathe": "^2.0.1",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@types/diff": "^7.0.0",
"@types/node": "^22.10.6",
"@types/pacote": "^11.1.8",
"@smushytaco/versionchecker": "^1.0.5",
"@eslint/js": "^9.18.0",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"typescript-eslint": "^8.20.0",
"eslint-plugin-unicorn": "^56.0.1",
"eslint-plugin-prettier": "^5.2.1",
"typescript": "^5.7.3",
"prettier": "^3.4.2",
"vite": "^6.0.7",
"vite-plugin-tsc-transpile": "^1.0.4",
"globals": "^15.14.0",
"del-cli": "^6.0.0"
}
}