-
Notifications
You must be signed in to change notification settings - Fork 0
/
sponsorkit.config.ts
64 lines (55 loc) · 1.14 KB
/
sponsorkit.config.ts
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
import { defineConfig, tierPresets } from "sponsorkit";
export default defineConfig({
// Providers configs
github: {
login: "chrisbbreuer",
type: "user",
},
// Rendering configs
width: 800,
renderer: "tiers", // or 'circles'
formats: ["json", "svg", "png", "webp"],
tiers: [
// Past sponsors, currently only supports GitHub
{
title: "Past Sponsors",
monthlyDollars: -1,
preset: tierPresets.xs,
},
// Default tier
{
title: "Backers",
preset: tierPresets.base,
},
{
title: "Sponsors",
monthlyDollars: 50,
preset: tierPresets.medium,
},
{
title: "Silver Sponsors",
monthlyDollars: 100,
preset: tierPresets.large,
},
{
title: "Gold Sponsors",
monthlyDollars: 250,
preset: tierPresets.xl,
},
{
title: "Platinum Sponsors",
monthlyDollars: 1000,
preset: tierPresets.xl,
},
{
title: "Diamond Sponsors",
monthlyDollars: 2500,
preset: tierPresets.xl,
},
{
title: "Ruby Sponsors",
monthlyDollars: 5000,
preset: tierPresets.xl,
},
],
});