feedcanon 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,64 @@
1
+ {
2
+ "name": "feedcanon",
3
+ "description": "Find the canonical URL for any web feed by comparing actual content. Turn messy feed URLs into their cleanest, most reliable form.",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "https://github.com/macieklamberski/feedcanon.git"
7
+ },
8
+ "homepage": "https://feedcanon.dev",
9
+ "bugs": {
10
+ "url": "https://github.com/macieklamberski/feedcanon/issues"
11
+ },
12
+ "license": "MIT",
13
+ "author": "Maciej Lamberski",
14
+ "sideEffects": false,
15
+ "keywords": [
16
+ "rss",
17
+ "atom",
18
+ "feed",
19
+ "canonical",
20
+ "url",
21
+ "normalize",
22
+ "dedupe"
23
+ ],
24
+ "type": "module",
25
+ "exports": {
26
+ ".": {
27
+ "import": {
28
+ "types": "./dist/exports.d.ts",
29
+ "default": "./dist/exports.js"
30
+ },
31
+ "require": {
32
+ "types": "./dist/exports.d.cts",
33
+ "default": "./dist/exports.cjs"
34
+ }
35
+ },
36
+ "./defaults": {
37
+ "import": {
38
+ "types": "./dist/defaults.d.ts",
39
+ "default": "./dist/defaults.js"
40
+ },
41
+ "require": {
42
+ "types": "./dist/defaults.d.cts",
43
+ "default": "./dist/defaults.cjs"
44
+ }
45
+ }
46
+ },
47
+ "files": [
48
+ "dist"
49
+ ],
50
+ "scripts": {
51
+ "prepare": "lefthook install",
52
+ "build": "tsdown src/exports.ts src/defaults.ts --format cjs,esm --dts --clean --unbundle --no-fixed-extension"
53
+ },
54
+ "dependencies": {
55
+ "entities": "^7.0.0",
56
+ "feedsmith": "^2.8.0"
57
+ },
58
+ "devDependencies": {
59
+ "@types/bun": "^1.3.5",
60
+ "kvalita": "1.9.0",
61
+ "tsdown": "^0.18.2"
62
+ },
63
+ "version": "0.9.0"
64
+ }