Files
dealplustech/node_modules/chokidar/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

64 lines
1.3 KiB
JSON

{
"name": "chokidar",
"description": "Minimal and efficient cross-platform file watching library",
"version": "5.0.0",
"type": "module",
"homepage": "https://github.com/paulmillr/chokidar",
"author": "Paul Miller (https://paulmillr.com)",
"files": [
"index.js",
"index.d.ts",
"handler.js",
"handler.d.ts"
],
"main": "./index.js",
"exports": {
".": {
"default": "./index.js"
},
"./handler.js": {
"default": "./handler.js"
}
},
"dependencies": {
"readdirp": "^5.0.0"
},
"devDependencies": {
"@paulmillr/jsbt": "0.4.5",
"@types/node": "24.10.1",
"prettier": "3.5.2",
"tinyspy": "3.0.2",
"typescript": "5.9.2",
"upath": "2.0.1"
},
"sideEffects": false,
"engines": {
"node": ">= 20.19.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paulmillr/chokidar.git"
},
"bugs": {
"url": "https://github.com/paulmillr/chokidar/issues"
},
"license": "MIT",
"scripts": {
"build": "tsc",
"lint": "prettier --check src",
"format": "prettier --write src",
"test": "node index.test.js",
"test:bun1": "bun index.test.js"
},
"keywords": [
"fs",
"watch",
"watchFile",
"watcher",
"watching",
"file",
"fsevents"
],
"funding": "https://paulmillr.com/funding/"
}