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

61 lines
1.4 KiB
JSON

{
"name": "remark-smartypants",
"description": "remark plugin to implement SmartyPants",
"version": "3.0.2",
"license": "MIT",
"files": [
"./dist",
"!dist/tsconfig.build.tsbuildinfo"
],
"exports": "./dist/plugin.js",
"types": "./dist/plugin.d.ts",
"type": "module",
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/silvenon/remark-smartypants.git"
},
"author": {
"name": "Matija Marohnić",
"email": "matija.marohnic@gmail.com",
"url": "https://silvenon.com"
},
"homepage": "https://github.com/silvenon/remark-smartypants#readme",
"bugs": {
"url": "https://github.com/silvenon/remark-smartypants/issues",
"email": "matija.marohnic@gmail.com"
},
"keywords": [
"unified",
"remark",
"remark-plugin",
"smartypants",
"punctuation",
"typography",
"smart"
],
"scripts": {
"test": "vitest run",
"build": "tsc --build",
"prepublishOnly": "npm test && npm run build"
},
"dependencies": {
"retext": "^9.0.0",
"retext-smartypants": "^6.0.0",
"unified": "^11.0.4",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@types/unist": "^3.0.2",
"lefthook": "^1.6.10",
"prettier": "^3.2.5",
"remark": "^15.0.1",
"remark-mdx": "^3.0.1",
"typescript": "^5.4.5",
"unist-util-is": "^6.0.0",
"vitest": "^1.5.0"
}
}