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

72 lines
1.8 KiB
JSON

{
"name": "github-slugger",
"description": "Generate a slug just like GitHub does for markdown headings.",
"version": "2.0.0",
"author": "Dan Flettre <flettre@gmail.com>",
"contributors": [
"Dan Flettre <flettre@gmail.com>",
"Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)"
],
"bugs": {
"url": "https://github.com/Flet/github-slugger/issues"
},
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.d.ts",
"index.js",
"regex.d.ts",
"regex.js"
],
"devDependencies": {
"@octokit/rest": "^19.0.0",
"@types/regenerate": "^1.0.0",
"@types/tape": "^4.0.0",
"@unicode/unicode-13.0.0": "^1.0.0",
"c8": "^7.0.0",
"hast-util-select": "^5.0.0",
"mdast-util-gfm": "^2.0.0",
"mdast-util-to-markdown": "^1.0.0",
"node-fetch": "^3.0.0",
"regenerate": "^1.0.0",
"rehype-parse": "^8.0.0",
"rimraf": "^3.0.0",
"standard": "*",
"tap-spec": "^5.0.0",
"tape": "^5.0.0",
"type-coverage": "^2.0.0",
"typescript": "^4.0.0",
"unified": "^10.0.0"
},
"homepage": "https://github.com/Flet/github-slugger",
"keywords": [
"anchor",
"github",
"hash",
"heading",
"markdown",
"slug",
"slugger",
"url"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/Flet/github-slugger.git"
},
"scripts": {
"prepack": "npm run build && npm run format",
"build": "rimraf \"{script,test}/**/*.d.ts\" \"*.d.ts\" && tsc && type-coverage",
"format": "standard --fix",
"test-api": "tape test | tap-spec",
"test-coverage": "c8 --check-coverage --100 --reporter lcov npm run test-api",
"test": "npm run build && npm run format && npm run test-coverage"
},
"typeCoverage": {
"atLeast": 100,
"detail": true,
"strict": true
}
}