-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.14 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
48
49
{
"name": "url-reader",
"description": "Convert your URLs to JSON/Markdown/Text format.",
"keywords": [
"puppeteer",
"url",
"url-reader",
"urlReader",
"json",
"html",
"markdown",
"reader"
],
"version": "1.0.2",
"main": "./dist/index.js",
"author": "zac ma",
"type": "module",
"license": "MIT",
"scripts": {
"start": "node ./dist/app.js",
"dev": "nodemon --exec tsx ./src/app.ts",
"build": "tsc --project tsconfig.build.json --outDir dist/",
"lint": "yarn eslint .",
"test": "jest"
},
"engines": {
"node": ">=20.11.0"
},
"dependencies": {
"@mozilla/readability": "^0.5.0",
"fastify": "^4.26.2",
"jsdom": "^24.0.0",
"puppeteer": "^22.6.5",
"turndown": "^7.1.3"
},
"devDependencies": {
"@eslint/js": "^9.1.1",
"@stylistic/eslint-plugin": "^1.7.2",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.12.7",
"@types/turndown": "^5.0.4",
"eslint": "^9.1.1",
"globals": "^15.0.0",
"tsx": "^4.7.3",
"typescript": "^5.4.5",
"typescript-eslint": "^7.7.1",
"nodemon": "^3.1.0"
}
}