-
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.8 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.8 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": "git2feed",
"version": "1.7.3-beta.13",
"description": "Generate updates.txt, JSON and RSS from git commits at build time (auto-detects Next.js and common frameworks)",
"type": "module",
"bin": {
"git2feed": "src/cli.js"
},
"exports": {
".": "./src/generate.js",
"./middleware": "./src/middleware.js"
},
"files": [
"src",
"README.md",
"LICENSE"
],
"scripts": {
"start": "node src/cli.js",
"dev": "node src/cli.js",
"updates": "node src/cli.js",
"updates:strip": "node src/cli.js --strip-branch",
"updates:recent": "node src/cli.js --since \"1 week ago\"",
"updates:all": "node src/cli.js --max 5000",
"prepare": "node src/cli.js --strip-branch",
"test": "node test/test.js",
"test:unit": "node test/test-process.js",
"postinstall": "chmod +x src/cli.js && node src/install-hooks.js",
"install-hooks": "node src/install-hooks.js",
"setup-endpoints": "node src/cli.js install-endpoint"
},
"dependencies": {
"date-fns": "^4.1.0",
"feed": "^4.2.2",
"simple-git": "^3.27.0"
},
"engines": {
"node": ">=18"
},
"keywords": [
"rss",
"feed",
"changelog",
"git",
"updates",
"nextjs",
"remix",
"astro",
"sveltekit",
"nuxt",
"gatsby"
],
"author": {
"name": "Aurelien Rommelaere",
"url": "https://arommelaere.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/arommelaere/git2feed.git"
},
"bugs": {
"url": "https://github.com/arommelaere/git2feed/issues"
},
"homepage": "https://arommelaere.com/"
}