summaryrefslogtreecommitdiff
path: root/packages/integrations/sitemap/package.json
blob: 102102985fc7948ed5469a2d87ba217afe0e6ee2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
  "name": "@astrojs/sitemap",
  "description": "Generate a sitemap for your Astro site",
  "version": "1.3.0",
  "type": "module",
  "types": "./dist/index.d.ts",
  "author": "withastro",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/withastro/astro.git",
    "directory": "packages/integrations/sitemap"
  },
  "keywords": [
    "astro-integration",
    "astro-component",
    "seo",
    "sitemap"
  ],
  "bugs": "https://github.com/withastro/astro/issues",
  "homepage": "https://docs.astro.build/en/guides/integrations-guide/sitemap/",
  "exports": {
    ".": "./dist/index.js",
    "./package.json": "./package.json"
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "astro-scripts build \"src/**/*.ts\" && tsc",
    "build:ci": "astro-scripts build \"src/**/*.ts\"",
    "dev": "astro-scripts dev \"src/**/*.ts\"",
    "test": "mocha --timeout 20000"
  },
  "dependencies": {
    "sitemap": "^7.1.1",
    "zod": "^3.17.3"
  },
  "devDependencies": {
    "@astrojs/node": "workspace:*",
    "astro": "workspace:*",
    "astro-scripts": "workspace:*",
    "chai": "^4.3.6",
    "mocha": "^9.2.2",
    "xml2js": "0.5.0"
  }
}