@@ -4,7 +4,7 @@ export interface Maintainer {
44 name : string
55 avatar : string
66 github : string
7- isCoreMaintainer : boolean
7+ isCoreMaintainer ? : boolean
88 creatorOf ?: Library [ 'id' ] [ ]
99 maintainerOf ?: Library [ 'id' ] [ ] // inherits from creatorOf
1010 contributorOf ?: Library [ 'id' ] [ ] // inherits from maintainerOf
@@ -138,6 +138,61 @@ export const allMaintainers: Maintainer[] = [
138138 frameworkExpertise : [ 'react' , 'svelte' ] ,
139139 specialties : [ 'Architecture' ] ,
140140 } ,
141+ {
142+ name : 'Leonardo Montini' ,
143+ avatar : 'https://github.com/Balastrong.png' ,
144+ github : 'Balastrong' ,
145+ maintainerOf : [ 'form' ] ,
146+ frameworkExpertise : [ 'react' ] ,
147+ social : {
148+ website : 'https://leonardomontini.dev/' ,
149+ twitter : 'https://x.com/Balastrong' ,
150+ bluesky : 'https://bsky.app/profile/leonardomontini.dev' ,
151+ } ,
152+ } ,
153+ {
154+ name : 'Fredrik Höglund' ,
155+ avatar : 'https://github.com/ephem.png' ,
156+ github : 'ephem' ,
157+ maintainerOf : [ 'query' ] ,
158+ frameworkExpertise : [ 'react' ] ,
159+ specialties : [ 'Data Management' , 'SSR' , 'Hydration' ] ,
160+ social : {
161+ bluesky : 'https://bsky.app/profile/ephem.dev' ,
162+ twitter : 'https://x.com/ephemjs' ,
163+ website : 'https://www.ephem.dev' ,
164+ } ,
165+ } ,
166+ {
167+ name : 'Aadit Olkar' ,
168+ avatar : 'https://github.com/aadito123.png' ,
169+ github : 'aadito123' ,
170+ maintainerOf : [ 'form' ] ,
171+ frameworkExpertise : [ 'solid' ] ,
172+ social : {
173+ twitter : 'https://x.com/swagdoctor19' ,
174+ } ,
175+ } ,
176+ {
177+ name : 'Luca Jakob' ,
178+ avatar : 'https://github.com/LeCarbonator.png' ,
179+ github : 'LeCarbonator' ,
180+ maintainerOf : [ 'form' ] ,
181+ frameworkExpertise : [ 'react' ] ,
182+ } ,
183+ {
184+ name : 'Jonghyeon Ko' ,
185+ avatar : 'https://github.com/manudeli.png' ,
186+ github : 'manudeli' ,
187+ maintainerOf : [ 'query' ] ,
188+ frameworkExpertise : [ 'react' ] ,
189+ specialties : [ 'TypeScript' , 'Backport' , 'Test' ] ,
190+ social : {
191+ twitter : 'https://x.com/manudeli_' ,
192+ bluesky : 'https://bsky.app/profile/manudeli.bsky.social' ,
193+ website : 'https://www.linkedin.com/in/jonghyeonko' ,
194+ } ,
195+ } ,
141196]
142197
143198export const coreMaintainers = allMaintainers . filter (
0 commit comments