aboutsummaryrefslogtreecommitdiff
path: root/packages/astro-rss/package.json
blob: 0a85f99c61402c39b90b5cb9a088986941871b6a (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
{
  "name": "@astrojs/rss",
  "description": "Add RSS feeds to your Astro projects",
  "version": "4.0.5",
  "type": "module",
  "types": "./dist/index.d.ts",
  "author": "withastro",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/withastro/astro.git",
    "directory": "packages/astro-rss"
  },
  "bugs": "https://github.com/withastro/astro/issues",
  "homepage": "https://astro.build",
  "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": "astro-scripts test \"test/**/*.test.js\""
  },
  "devDependencies": {
    "@types/xml2js": "^0.4.14",
    "astro": "workspace:*",
    "astro-scripts": "workspace:*",
    "xml2js": "0.6.2"
  },
  "dependencies": {
    "fast-xml-parser": "^4.3.6",
    "kleur": "^4.1.5"
  }
}