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

54 lines
1.5 KiB
JSON

{
"name": "smol-toml",
"license": "BSD-3-Clause",
"version": "1.6.0",
"description": "A small, fast, and correct TOML parser/serializer",
"author": "Cynthia <cyyynthia@borkenware.com>",
"repository": "github:squirrelchat/smol-toml",
"bugs": "https://github.com/squirrelchat/smol-toml/issues",
"funding": "https://github.com/sponsors/cyyynthia",
"keywords": [
"toml",
"parser",
"serializer"
],
"type": "module",
"engines": {
"node": ">= 18"
},
"devDependencies": {
"@iarna/toml": "3.0.0",
"@ltd/j-toml": "^1.38.0",
"@tsconfig/node-lts": "^24.0.0",
"@tsconfig/strictest": "^2.0.8",
"@types/node": "^25.0.3",
"@vitest/ui": "^4.0.16",
"esbuild": "^0.27.2",
"fast-toml": "^0.5.4",
"pin-github-action": "^3.4.0",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"files": [
"README.md",
"LICENSE",
"dist"
],
"scripts": {
"test": "vitest",
"test-ui": "vitest --ui",
"bench": "vitest bench",
"build": "pnpm run build:mjs && pnpm run build:cjs && node test/package/package-test.mjs",
"build:mjs": "tsc",
"build:cjs": "esbuild dist/index.js --bundle --platform=node --target=node18 --format=cjs --outfile=dist/index.cjs",
"update-gha": "pin-github-action .github/workflows"
}
}