astro-discovery/package.json

70 lines
1.5 KiB
JSON

{
"name": "@supsys/discovery",
"version": "1.0.0",
"description": "Complete discovery integration for Astro - handles robots.txt, llms.txt, humans.txt, security.txt, canary.txt, webfinger, and sitemap generation",
"type": "module",
"exports": {
".": "./dist/index.js",
"./routes/*": "./dist/routes/*.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest",
"test:ci": "vitest run",
"prepublishOnly": "npm run build && npm run test:ci"
},
"peerDependencies": {
"astro": "^5.0.0"
},
"dependencies": {
"@astrojs/sitemap": "^3.6.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"astro": "^5.0.0",
"typescript": "^5.7.0",
"vitest": "^2.1.0"
},
"keywords": [
"astro",
"astro-integration",
"astro-component",
"robots",
"robots-txt",
"sitemap",
"llms",
"llms-txt",
"humans",
"humans-txt",
"security-txt",
"canary-txt",
"webfinger",
"activitypub",
"discovery",
"seo",
"ai",
"llm",
"rfc9116",
"rfc7033"
],
"author": {
"name": "Ryan Malloy",
"email": "ryan@supported.systems"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git@git.supported.systems:astro/astro-discovery.git"
},
"bugs": {
"url": "https://git.supported.systems/astro/astro-discovery/issues"
},
"homepage": "https://git.supported.systems/astro/astro-discovery"
}