-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.24 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.24 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
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@tremendous.dev/clippy",
"version": "0.0.1",
"description": "Crawl any site. Save as markdown.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"clippy": "dist/bin/clippy.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yerffejytnac/clippy.git"
},
"homepage": "https://github.com/yerffejytnac/clippy#readme",
"bugs": {
"url": "https://github.com/yerffejytnac/clippy/issues"
},
"scripts": {
"nuke": "rm -rf node_modules && rm -rf bun.lock && rm -rf dist && rm -rf bin",
"check": "biome format --write ./",
"check:ts": "tsc --project ./tsconfig.check.json",
"lint": "biome lint --write",
"build": "tsc",
"dev": "tsx watch src/index.ts",
"test": "vitest",
"prepublishOnly": "bun run build"
},
"keywords": [
"cli",
"markdown",
"documentation",
"crawler",
"typescript",
"web-scraping",
"command-line-tool",
"knowledge-base",
"content-extraction",
"archival",
"playwright",
"offline-documentation"
],
"author": {
"name": "Jeffrey Canty",
"email": "jeffrey@tremendous.dev",
"url": "https://tremendous.dev"
},
"license": "MIT",
"dependencies": {
"@mozilla/readability": "^0.6.0",
"chalk": "^5.3.0",
"cheerio": "^1.2.0",
"commander": "^14.0.3",
"html-url-attributes": "^3.0.1",
"jsdom": "^28.1.0",
"marked": "^17.0.3",
"p-queue": "^9.1.0",
"rehype-parse": "^9.0.1",
"rehype-raw": "^7.0.0",
"rehype-remark": "^10.0.1",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"remark-stringify": "^11.0.0",
"remend": "^1.2.0",
"sitemapper": "^4.0.2",
"unified": "^11.0.5",
"unist-util-visit": "^5.1.0",
"unist-util-visit-parents": "^6.0.2"
},
"optionalDependencies": {
"playwright": "^1.58.2",
"rebrowser-playwright": "^1.47.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.2",
"@types/jsdom": "^27.0.0",
"@types/node": "^25.3.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=20"
},
"files": [
"dist",
"README.md",
"LICENSE.md"
],
"publishConfig": {
"access": "public"
}
}