Skip to content

Commit 7325426

Browse files
committed
feat: introduce funding.json to define project details, funding channels, and plans.
1 parent 66427c2 commit 7325426

1 file changed

Lines changed: 125 additions & 0 deletions

File tree

funding.json

Lines changed: 125 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,125 @@
1+
{
2+
"$schema": "https://fundingjson.org/schema/v1.1.0.json",
3+
"version": "v1.1.0",
4+
"entity": {
5+
"type": "individual",
6+
"role": "maintainer",
7+
"name": "Bharath",
8+
"email": "kumarbharath63@gmail.com",
9+
"phone": "",
10+
"description": "Full-stack engineer building developer tools that solve real problems. Creator of git-scope and other open-source utilities focused on developer productivity and multi-repo workflows.",
11+
"webpageUrl": {
12+
"url": "https://github.com/Bharath-code",
13+
"wellKnown": ""
14+
}
15+
},
16+
"projects": [
17+
{
18+
"guid": "git-scope",
19+
"name": "git-scope",
20+
"description": "A fast TUI dashboard to view the git status of all your repositories in one place. Stop the cd → git status loop. git-scope solves the \"Multi-Repo Blindness\" problem by providing a command center view across dozens of repositories.\n\nFeatures include fuzzy search, dirty filtering, workspace switching, contribution graphs, disk usage visualization, and editor integration. Designed to be read-only, local-first, and blazing fast (<10ms startup).",
21+
"webpageUrl": {
22+
"url": "https://bharath-code.github.io/git-scope/",
23+
"wellKnown": ""
24+
},
25+
"repositoryUrl": {
26+
"url": "https://github.com/Bharath-code/git-scope",
27+
"wellKnown": ""
28+
},
29+
"licenses": [
30+
"spdx:MIT"
31+
],
32+
"tags": [
33+
"git",
34+
"tui",
35+
"terminal",
36+
"developer-tools",
37+
"productivity",
38+
"go",
39+
"cli",
40+
"multi-repo"
41+
]
42+
}
43+
],
44+
"funding": {
45+
"channels": [
46+
{
47+
"guid": "github-sponsors",
48+
"type": "payment-provider",
49+
"address": "https://github.com/sponsors/Bharath-code",
50+
"description": "Sponsor via GitHub Sponsors — supports recurring and one-time contributions."
51+
},
52+
{
53+
"guid": "buymeacoffee",
54+
"type": "payment-provider",
55+
"address": "https://buymeacoffee.com/iam_pbk",
56+
"description": "Quick one-time contributions via Buy Me A Coffee."
57+
}
58+
],
59+
"plans": [
60+
{
61+
"guid": "backer",
62+
"status": "active",
63+
"name": "Backer",
64+
"description": "Support ongoing development and maintenance of git-scope.",
65+
"amount": 25,
66+
"currency": "USD",
67+
"frequency": "monthly",
68+
"channels": [
69+
"github-sponsors",
70+
"buymeacoffee"
71+
]
72+
},
73+
{
74+
"guid": "supporter",
75+
"status": "active",
76+
"name": "Supporter",
77+
"description": "Fund new feature development and priority bug fixes.",
78+
"amount": 100,
79+
"currency": "USD",
80+
"frequency": "monthly",
81+
"channels": [
82+
"github-sponsors"
83+
]
84+
},
85+
{
86+
"guid": "sponsor",
87+
"status": "active",
88+
"name": "Sponsor",
89+
"description": "Significant contribution to fund major features and infrastructure. Get recognition in README.",
90+
"amount": 250,
91+
"currency": "USD",
92+
"frequency": "monthly",
93+
"channels": [
94+
"github-sponsors"
95+
]
96+
},
97+
{
98+
"guid": "platinum",
99+
"status": "active",
100+
"name": "Platinum Sponsor",
101+
"description": "Premium sponsorship with logo placement and priority feature requests.",
102+
"amount": 500,
103+
"currency": "USD",
104+
"frequency": "monthly",
105+
"channels": [
106+
"github-sponsors"
107+
]
108+
},
109+
{
110+
"guid": "one-time",
111+
"status": "active",
112+
"name": "One-Time Contribution",
113+
"description": "Any amount to show your support for the project.",
114+
"amount": 0,
115+
"currency": "USD",
116+
"frequency": "one-time",
117+
"channels": [
118+
"github-sponsors",
119+
"buymeacoffee"
120+
]
121+
}
122+
],
123+
"history": []
124+
}
125+
}

0 commit comments

Comments
 (0)