-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 1.9 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "feedsmith",
"description": "Fast, all‑in‑one feed parser and generator for RSS, Atom, RDF, and JSON Feed, with support for Podcast, iTunes, Dublin Core, and OPML files.",
"repository": {
"type": "git",
"url": "https://github.com/macieklamberski/feedsmith.git"
},
"homepage": "https://feedsmith.dev",
"bugs": {
"url": "https://github.com/macieklamberski/feedsmith/issues"
},
"license": "MIT",
"author": "Maciej Lamberski",
"sideEffects": false,
"keywords": [
"rss to json",
"rss reader",
"rss parser",
"rss generator",
"opml parser",
"opml to json",
"rss podcast",
"feed parser",
"feed generator",
"atom",
"rss",
"rdf",
"jsonfeed",
"opml"
],
"type": "module",
"main": "./dist/index.cjs",
"types": "./dist/index.d.cts",
"typesVersions": {
"*": {
"types": [
"./dist/types.d.ts"
]
}
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./types": {
"import": {
"types": "./dist/types.d.ts",
"default": "./dist/types.js"
},
"require": {
"types": "./dist/types.d.cts",
"default": "./dist/types.cjs"
}
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"scripts": {
"prepare": "lefthook install",
"build": "tsdown src/index.ts src/types.ts --format cjs,esm --dts --clean --unbundle --no-fixed-extension",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs"
},
"dependencies": {
"entities": "^7.0.1",
"fast-xml-parser": "~5.10.0"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"kvalita": "^1.16.0",
"tsdown": "^0.22.7",
"vitepress": "^2.0.0-alpha.18"
}
}