generated from imranbarbhuiya/package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
95 lines (95 loc) · 2.3 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "esbuild-plugins-node-modules-polyfill",
"version": "1.6.8",
"description": "Polyfills nodejs builtin modules and globals for the browser.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"license": "MIT",
"author": "@imranbarbhuiya",
"scripts": {
"lint": "eslint src --fix",
"format": "prettier --write \"src/**/*.ts\"",
"update": "yarn upgrade-interactive",
"build": "tsup",
"bump": "cliff-jumper",
"check-update": "cliff-jumper --dry-run",
"prepack": "yarn build && pinst --disable",
"postinstall": "husky .github/husky",
"postpack": "pinst --enable",
"typecheck": "tsc -p tsconfig.eslint.json",
"test": "vitest run"
},
"keywords": [
"esbuild-plugins",
"esbuild-plugins-node-modules-polyfill",
"node-modules-polyfill",
"esbuild",
"esbuild-plugin",
"polyfill",
"node-modules",
"node-polyfill"
],
"dependencies": {
"@jspm/core": "^2.1.0",
"local-pkg": "^0.5.1",
"resolve.exports": "^2.0.3"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@favware/cliff-jumper": "^5.0.0",
"@favware/npm-deprecate": "^2.0.0",
"@types/node": "^22.10.2",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.24.2",
"eslint": "9.17.0",
"eslint-config-mahir": "^1.0.7",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"pinst": "^3.0.0",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"peerDependencies": {
"esbuild": ">=0.14.0 <=0.24.x"
},
"files": [
"dist/**/*.js*",
"dist/**/*.mjs*",
"dist/**/*.d*",
"globals/**/*.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/imranbarbhuiya/esbuild-plugins-node-modules-polyfill.git"
},
"bugs": {
"url": "https://github.com/imranbarbhuiya/esbuild-plugins-node-modules-polyfill/issues"
},
"homepage": "https://github.com/imranbarbhuiya/esbuild-plugins-node-modules-polyfill#readme",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{mjs,js,ts}": "eslint --fix"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"resolutions": {
"ansi-regex": "^5.0.1",
"minimist": "^1.2.8",
"eslint": "9.17.0"
},
"engines": {
"node": ">=14.0.0"
},
"packageManager": "yarn@4.5.3"
}