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

71 lines
1.6 KiB
JSON

{
"name": "tsconfck",
"version": "3.1.6",
"description": "A utility to work with tsconfig.json without typescript",
"license": "MIT",
"author": "dominikg",
"files": [
"bin",
"src",
"types",
"README.md",
"LICENSE",
"package.json"
],
"type": "module",
"bin": "bin/tsconfck.js",
"types": "types/index.d.ts",
"exports": {
".": {
"import": {
"types": "./types/index.d.ts",
"default": "./src/index.js"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/dominikg/tsconfck.git",
"directory": "packages/tsconfck"
},
"keywords": [
"typescript",
"tsconfig",
"tsconfig.json",
"jsconfig",
"jsconfig.json"
],
"bugs": {
"url": "https://github.com/dominikg/tsconfck/issues"
},
"homepage": "https://github.com/dominikg/tsconfck/tree/main/packages/tsconfck#readme",
"peerDependencies": {
"typescript": "^5.0.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"devDependencies": {
"@tsconfig/node18": "^18.2.4",
"@tsconfig/strictest": "^2.0.5",
"@vitest/coverage-v8": "^3.0.9",
"esbuild": "^0.25.1",
"isaacscript-tsconfig": "^7.0.1",
"tiny-glob": "^0.2.9",
"typescript": "^5.8.2",
"vitest": "^3.0.9"
},
"engines": {
"node": "^18 || >=20"
},
"scripts": {
"check:publint": "publint --strict",
"check:types": "tsc --noEmit",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"dts-buddy": "dts-buddy -m \"tsconfck:src/index.js\""
}
}