sitemap-ts
Version:
Sitemap generator for TypeScript projects
85 lines • 2.06 kB
JSON
{
"name": "sitemap-ts",
"type": "module",
"version": "1.10.1",
"description": "Sitemap generator for TypeScript projects",
"author": "JB Aubrée <jb.aubree@protonmail.com>",
"license": "MIT",
"homepage": "https://github.com/jbaubree/sitemap-ts#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/jbaubree/sitemap-ts.git"
},
"bugs": {
"url": "https://github.com/antfu/sitemap-ts/issues"
},
"keywords": [
"Sitemap",
"Typescript",
"Generator",
"Robots",
"Sitemap.xml",
"Robots.txt"
],
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"@antfu/utils": "^0.7.8",
"fast-glob": "^3.3.2",
"sitemap": "^8.0.0",
"xml-formatter": "^3.6.2"
},
"devDependencies": {
"@antfu/eslint-config": "^2.18.1",
"@antfu/ni": "^0.21.12",
"@babel/types": "^7.24.5",
"@types/node": "^20.12.12",
"@vitest/coverage-v8": "^1.6.0",
"bumpp": "^9.4.1",
"eslint": "^9.3.0",
"eslint-plugin-format": "^0.1.1",
"esno": "^4.7.0",
"lint-staged": "^15.2.4",
"pnpm": "^9.1.2",
"rimraf": "^5.0.7",
"simple-git-hooks": "^2.11.1",
"taze": "^0.13.8",
"typescript": "^5.4.5",
"unbuild": "^2.0.0",
"vite": "^5.2.11",
"vitest": "^1.6.0"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md}": [
"eslint --fix"
],
"./src/*.ts": [
"tsc --skipLibCheck --esModuleInterop --noEmit"
]
},
"scripts": {
"build": "rimraf dist && unbuild",
"dev": "unbuild --stub",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"release": "bumpp --commit --push --tag && pnpm publish",
"start": "esno src/index.ts",
"test": "vitest --coverage",
"typecheck": "tsc --noEmit",
"up": "taze major -r -I"
}
}