@ariesfish/feedloom 0.1.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/LICENSE +21 -0
- package/README.md +282 -0
- package/dist/cli.d.ts +1 -0
- package/dist/cli.js +1745 -0
- package/package.json +52 -0
package/package.json
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ariesfish/feedloom",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"author": "ariesfish",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"description": "Archive long-form web content as clean Markdown with local assets.",
|
|
8
|
+
"homepage": "https://github.com/ariesfish/feedloom#readme",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+ssh://git@github.com/ariesfish/feedloom.git"
|
|
12
|
+
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/ariesfish/feedloom/issues"
|
|
15
|
+
},
|
|
16
|
+
"bin": {
|
|
17
|
+
"feedloom": "dist/cli.js"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist",
|
|
21
|
+
"README.md",
|
|
22
|
+
"LICENSE"
|
|
23
|
+
],
|
|
24
|
+
"scripts": {
|
|
25
|
+
"dev": "tsx src/cli.ts",
|
|
26
|
+
"build": "tsup src/cli.ts --format esm --dts --clean",
|
|
27
|
+
"typecheck": "tsc --noEmit",
|
|
28
|
+
"test": "vitest run",
|
|
29
|
+
"prepublishOnly": "npm run typecheck && npm test && npm run build"
|
|
30
|
+
},
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"@iarna/toml": "^2.2.5",
|
|
33
|
+
"commander": "^14.0.0",
|
|
34
|
+
"defuddle": "^0.18.1",
|
|
35
|
+
"fast-xml-parser": "^5.7.2",
|
|
36
|
+
"linkedom": "^0.18.12",
|
|
37
|
+
"patchright": "^1.59.4",
|
|
38
|
+
"turndown": "^7.2.4",
|
|
39
|
+
"turndown-plugin-gfm": "^1.0.2"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@types/node": "^24.0.0",
|
|
43
|
+
"@types/turndown": "^5.0.6",
|
|
44
|
+
"tsup": "^8.5.1",
|
|
45
|
+
"tsx": "^4.21.0",
|
|
46
|
+
"typescript": "^5.9.3",
|
|
47
|
+
"vitest": "^3.2.4"
|
|
48
|
+
},
|
|
49
|
+
"engines": {
|
|
50
|
+
"node": ">=24"
|
|
51
|
+
}
|
|
52
|
+
}
|