-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.44 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.44 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
{
"name": "rivu",
"version": "1.0.0",
"description": "A modern and type-safe RSS generator for Node.js.",
"homepage": "https://rivu.jarmos.dev",
"bugs": {
"url": "https://github.com/Jarmos-san/rivu/issues",
"email": "contact@jarmos.dev"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "vitest",
"lint": "eslint .",
"format": "prettier . --write",
"format:check": "prettier . --check",
"prepublish": "pnpm build"
},
"keywords": [
"rss",
"xml",
"atom",
"feed",
"feed builder",
"rss feed"
],
"author": {
"name": "Somraj Saha",
"email": "contact@jarmos.dev",
"url": "https://jarmos.dev"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/Jarmos-san"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jarmos-san/rivu.git"
},
"license": "MIT",
"type": "module",
"devDependencies": {
"@types/node": "^25.0.0",
"@vitest/coverage-v8": "^4.0.7",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.6.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.3",
"vitest": "^4.0.3"
},
"prettier": {
"semi": true,
"singleQuote": false,
"printWidth": 80,
"trailingComma": "all"
},
"dependencies": {
"xmlbuilder2": "^4.0.0"
},
"packageManager": "pnpm@10.28.2"
}