-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.03 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
{
"name": "@spaceduckapp/readability-cli",
"version": "1.0.2",
"description": "Simple CLI wrapper around @mozilla/readability",
"main": "src/index.ts",
"type": "commonjs",
"scripts": {
"biome": "biome",
"esbuild": "esbuild",
"tsc": "tsc"
},
"bin": {
"readability-cli": "dist/readability-cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spaceduck-com/readability-cli.git"
},
"author": "The team at Spaceduck",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/spaceduck-com/readability-cli/issues"
},
"homepage": "https://github.com/spaceduck-com/readability-cli#readme",
"dependencies": {
"@mozilla/readability": "^0.5.0",
"argparse": "^2.0.1",
"dompurify": "^3.1.6",
"jsdom": "^25.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/argparse": "^2.0.16",
"@types/dompurify": "^3.0.5",
"@types/jsdom": "^21.1.7",
"@types/node": "^20.16.5",
"esbuild": "^0.23.1",
"typescript": "^5.6.2"
}
}