@jcottam/html-metadata
Version:
This JavaScript library simplifies the extraction of HTML Meta and OpenGraph tags from HTML content or URLs.
67 lines (66 loc) • 1.61 kB
JSON
{
"name": "@jcottam/html-metadata",
"description": "This JavaScript library simplifies the extraction of HTML Meta and OpenGraph tags from HTML content or URLs.",
"version": "3.1.2",
"author": "John Ryan Cottam <https://www.johnryancottam.com>",
"license": "MIT",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/jcottam/html-metadata.git"
},
"bugs": {
"url": "https://github.com/jcottam/html-metadata/issues"
},
"homepage": "https://github.com/jcottam/html-metadata#readme",
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"metadata",
"cheerio",
"seo",
"open-graph",
"og-tags",
"html-metadata",
"html-meta-tags"
],
"scripts": {
"build": "rm -rf dist && rollup --config",
"test": "vitest --run",
"release": "release-it"
},
"devDependencies": {
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.4",
"release-it": "^19.0.4",
"rollup": "^4.50.1",
"tslib": "^2.8.1",
"typescript": "^5.9.2",
"vite": "^7.1.5",
"vitest": "^3.2.4"
},
"release-it": {
"github": {
"release": true
},
"npm": {
"publish": true
},
"hooks": {
"before:init": [
"npm test"
],
"after:bump": "npm run build"
}
},
"dependencies": {
"cheerio": "^1.1.2"
}
}