✅ COMPLETED: 1. Dockerfile uses port 80 (astro preview) 2. BaseLayout imports globals.css 3. globals.css with Tailwind v4 @theme syntax 4. index.astro has Header, Footer, FixedContact 5. All image references fixed to existing files 6. Hero uses hdpe_pipe_main.jpg 7. Product cards use hdpe001.jpg 8. pt-20 on main for fixed header ✅ TESTED LOCALLY: - Build: 15 pages in 1.27s - Docker build successful - Port 80 working - Images load - CSS works Ready for Easypanel deployment.
63 lines
1.3 KiB
JSON
63 lines
1.3 KiB
JSON
{
|
|
"name": "data-uri-to-buffer",
|
|
"version": "4.0.1",
|
|
"description": "Generate a Buffer instance from a Data URI string",
|
|
"type": "module",
|
|
"exports": "./dist/index.js",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist",
|
|
"src"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "jest",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/TooTallNate/node-data-uri-to-buffer.git"
|
|
},
|
|
"engines": {
|
|
"node": ">= 12"
|
|
},
|
|
"keywords": [
|
|
"data",
|
|
"uri",
|
|
"datauri",
|
|
"data-uri",
|
|
"buffer",
|
|
"convert",
|
|
"rfc2397",
|
|
"2397"
|
|
],
|
|
"author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/TooTallNate/node-data-uri-to-buffer/issues"
|
|
},
|
|
"homepage": "https://github.com/TooTallNate/node-data-uri-to-buffer",
|
|
"devDependencies": {
|
|
"@types/jest": "^27.0.2",
|
|
"@types/node": "^12.20.36",
|
|
"jest": "^27.3.1",
|
|
"ts-jest": "^27.0.7",
|
|
"typescript": "^4.4.4"
|
|
},
|
|
"jest": {
|
|
"preset": "ts-jest",
|
|
"globals": {
|
|
"ts-jest": {
|
|
"diagnostics": false,
|
|
"isolatedModules": true
|
|
}
|
|
},
|
|
"verbose": false,
|
|
"testEnvironment": "node",
|
|
"testMatch": [
|
|
"<rootDir>/test/**/*.test.ts"
|
|
]
|
|
}
|
|
}
|