-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
47 lines (47 loc) · 1.11 KB
/
package.json
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
{
"name": "@philschmid/clipper",
"version": "0.2.1",
"description": "A CLI to clip articles from the web and save them as markdown files.",
"author": "Philipp Schmid",
"main": "dist/index.js",
"scripts": {
"test": "ts-node src/index.ts",
"build": "tsc"
},
"bin": {
"clipper": "dist/index.js"
},
"files": [
"dist"
],
"dependencies": {
"@mozilla/readability": "^0.4.4",
"commander": "^11.0.0",
"crawlee": "^3.5.4",
"jsdom": "^22.1.0",
"linkedom": "^0.15.3",
"playwright": "^1.38.1",
"turndown": "^6.0.0",
"turndown-plugin-gfm": "^1.0.2"
},
"devDependencies": {
"ts-node": "^10.9.1",
"@commander-js/extra-typings": "^11.0.0",
"@types/jsdom": "^21.1.3",
"@types/node": "^20.7.0",
"@types/turndown": "^5.0.2",
"typescript": "^5.2.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/philschmid/clipper.js.git"
},
"keywords": [
"CLI"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/philschmid/clipper.js/issues"
},
"homepage": "https://github.com/philschmid/clipper.js#readme"
}