Files
dealplustech/node_modules/deterministic-object-hash/package.json
Kunthawat 5171a789e9 fix: Final restoration with port 80
 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.
2026-03-12 08:58:56 +07:00

42 lines
1013 B
JSON

{
"name": "deterministic-object-hash",
"version": "2.0.2",
"description": "A deterministic object hashing algorithm for Node.js.",
"main": "dist/index.js",
"scripts": {
"test": "npx jest",
"build": "npx tsc -b ./",
"ts-watch": "npx tsc -b --watch ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zbauman3/Deterministic-Object-Hash.git"
},
"keywords": [
"deterministic",
"object",
"hash",
"algorithm"
],
"author": "Zane Bauman",
"license": "MIT",
"bugs": {
"url": "https://github.com/zbauman3/Deterministic-Object-Hash/issues"
},
"homepage": "https://github.com/zbauman3/Deterministic-Object-Hash#readme",
"devDependencies": {
"@types/base-64": "^1.0.2",
"@types/jest": "^27.4.0",
"@types/lodash": "^4.14.178",
"@types/node": "18.18.9",
"jest": "^27.4.7",
"lodash": "^4.17.21",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"base-64": "^1.0.0"
}
}