1
0
mirror of https://github.com/dzeiocom/libs.git synced 2025-04-22 19:02:14 +00:00
libs/packages/easy-sitemap/package.json
Florian Bouillon 2f1e72d77b
Some checks failed
CodeQL / Analyze (javascript) (push) Failing after 2m18s
feat: add support for easy-sitemap for ESM and CJS
Signed-off-by: Avior <github@avior.me>
2023-08-16 01:04:05 +02:00

54 lines
1.1 KiB
JSON

{
"name": "easy-sitemap",
"version": "1.2.0",
"description": "A very easy sitemap maker library",
"repository": {
"type": "git",
"url": "https://github.com/dzeiocom/libs.git",
"directory": "packages/easy-sitemap"
},
"homepage": "https://github.com/dzeiocom/libs/tree/master/packages/easy-sitemap#readme",
"author": "Aviortheking",
"license": "MIT",
"files": [
"dist"
],
"main": "./dist/Sitemap.js",
"module": "./dist/Sitemap.mjs",
"types": "./dist/Sitemap.d.ts",
"exports": {
".": {
"require": {
"types": "./dist/Sitemap.d.ts",
"default": "./dist/Sitemap.js"
},
"import": {
"types": "./dist/Sitemap.d.mts",
"default": "./dist/Sitemap.mjs"
}
}
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsup ./src/Sitemap.ts --format cjs,esm --dts --clean",
"test": "jest --coverage"
},
"keywords": [
"sitemap",
"sitemap.xml",
"xml",
"easy-sitemap",
"generator",
"SEO",
"search-engine"
],
"devDependencies": {
"@types/jest": "^29",
"jest": "^29",
"jest-sonar-reporter": "^2.0.0",
"ts-jest": "^29.1.1",
"tsup": "^7",
"typescript": "^5"
}
}