-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.94 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
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
{
"name": "webring",
"description": "Collect the latest RSS items from your favorite feeds.",
"author": {
"name": "Jerred Shepherd",
"email": "npm@sjer.red",
"url": "https://sjer.red"
},
"homepage": "https://github.com/shepherdjerred/webring",
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/shepherdjerred/webring.git"
},
"bugs": {
"url": "https://github.com/shepherdjerred/webring/issues"
},
"type": "module",
"version": "1.3.1",
"scripts": {
"prepare": "husky",
"lint": "eslint src --cache",
"build": "tsc",
"watch": "tsc -w",
"test": "vitest --disable-console-intercept",
"typedoc": "typedoc src/index.ts"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"remeda": "^2.17.4",
"rss-parser": "^3.13.0",
"sanitize-html": "^2.13.1",
"truncate-html": "^1.1.2",
"zod": "^3.24.1"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.17.0",
"@tsconfig/node20": "^20.1.4",
"@tsconfig/strictest": "^2.0.5",
"@types/eslint__js": "^8.42.3",
"@types/express": "^5.0.0",
"@types/node": "^22.10.2",
"@types/sanitize-html": "^2.13.0",
"eslint": "^9.17.0",
"express": "^4.21.2",
"globals": "^15.13.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"typedoc": "^0.27.5",
"typedoc-plugin-zod": "^1.3.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"vitest": "^2.1.8"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
"*": "prettier --ignore-unknown --write"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"prettier": {
"printWidth": 120
},
"files": [
"dist",
"src",
"package.json",
"README.md",
"LICENSE",
"package-lock.json",
"CHANGELOG.md"
]
}