-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.35 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.35 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
{
"name": "ghost-github-portfolio",
"version": "0.3.5",
"description": "Auto-sync GitHub repositories to a Ghost CMS portfolio page. Fetches repos, sorts by stars, generates cards with banners and badges, and updates Ghost via the Admin API.",
"type": "module",
"bin": {
"ghost-github-portfolio": "dist/index.js"
},
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"lint": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"ghost",
"github",
"portfolio",
"cms",
"sync",
"auto-update",
"badges",
"banners",
"stars",
"developer-portfolio",
"ghost-cms",
"admin-api",
"lexical",
"self-hosted"
],
"author": "GeiserX",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/GeiserX/ghost-github-portfolio.git"
},
"homepage": "https://github.com/GeiserX/ghost-github-portfolio",
"bugs": {
"url": "https://github.com/GeiserX/ghost-github-portfolio/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"commander": "^13.1.0",
"yaml": "^2.7.1"
},
"devDependencies": {
"@types/node": "^22.15.3",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vitest": "^3.1.3"
}
}