Files
formipay/node_modules/mrmime/package.json
dwindown e8fbfb14c1 fix: prevent asset conflicts between React and Grid.js versions
Add coexistence checks to all enqueue methods to prevent loading
both React and Grid.js assets simultaneously.

Changes:
- ReactAdmin.php: Only enqueue React assets when ?react=1
- Init.php: Skip Grid.js when React active on admin pages
- Form.php, Coupon.php, Access.php: Restore classic assets when ?react=0
- Customer.php, Product.php, License.php: Add coexistence checks

Now the toggle between Classic and React versions works correctly.

Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
2026-04-18 17:02:14 +07:00

45 lines
887 B
JSON

{
"name": "mrmime",
"version": "2.0.1",
"repository": "lukeed/mrmime",
"description": "A tiny (2.8kB) and fast utility for getting a MIME type from an extension or filename",
"module": "index.mjs",
"types": "index.d.ts",
"main": "index.js",
"license": "MIT",
"author": {
"name": "Luke Edwards",
"email": "luke.edwards05@gmail.com",
"url": "https://lukeed.com"
},
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.mjs",
"require": "./index.js"
},
"./package.json": "./package.json"
},
"files": [
"index.d.ts",
"index.mjs",
"index.js"
],
"engines": {
"node": ">=10"
},
"scripts": {
"build": "tsm bin/index.ts",
"test": "uvu -r tsm test"
},
"keywords": [
"mime",
"extension",
"mimetype"
],
"devDependencies": {
"tsm": "2.3.0",
"uvu": "0.5.2"
}
}