Document application modes (development/debug/production) Add global file drop handler, order column normalization, SPA hash fix Serve CDN assets via /_vendor/ URLs instead of merging into bundles Add production minification with license preservation Improve JSON formatting for debugging and production optimization Add CDN asset caching with CSS URL inlining for production builds Add three-mode system (development, debug, production) Update Manifest CLAUDE.md to reflect helper class architecture Refactor Manifest.php into helper classes for better organization Pre-manifest-refactor checkpoint: Add app_mode documentation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
49 lines
985 B
JSON
Executable File
49 lines
985 B
JSON
Executable File
{
|
|
"name": "postcss-url",
|
|
"version": "10.1.3",
|
|
"description": "PostCSS plugin to rebase or inline on url().",
|
|
"keywords": [
|
|
"css",
|
|
"postcss",
|
|
"postcss-plugin",
|
|
"url",
|
|
"rebase",
|
|
"inline",
|
|
"base64",
|
|
"assets"
|
|
],
|
|
"author": "Maxime Thirouin",
|
|
"license": "MIT",
|
|
"repository": "https://github.com/postcss/postcss-url.git",
|
|
"main": "src/index.js",
|
|
"files": [
|
|
"src"
|
|
],
|
|
"engines": {
|
|
"node": ">=10"
|
|
},
|
|
"dependencies": {
|
|
"make-dir": "~3.1.0",
|
|
"mime": "~2.5.2",
|
|
"minimatch": "~3.0.4",
|
|
"xxhashjs": "~0.2.2"
|
|
},
|
|
"devDependencies": {
|
|
"chai": "4.1.2",
|
|
"eslint": "7.12.1",
|
|
"mocha": "8.2.1",
|
|
"npmpub": "5.0.0",
|
|
"postcss": "^8.0.0",
|
|
"postcss-import": "12.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"postcss": "^8.0.0"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint --fix .",
|
|
"tests": "mocha --recursive --require ./test/setup",
|
|
"test": "npm run lint && npm run tests",
|
|
"release": "npmpub"
|
|
}
|
|
}
|