@girs/meta-10 10.0.0-3.2.4 → 10.0.0-3.2.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  ![downloads/week](https://img.shields.io/npm/dw/@girs/meta-10)
6
6
 
7
7
 
8
- GJS TypeScript type definitions for Meta-10, generated from library version 10.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.4.
8
+ GJS TypeScript type definitions for Meta-10, generated from library version 10.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.6.
9
9
 
10
10
 
11
11
  ## Install
@@ -81,6 +81,19 @@ Now you have also type support for this, too:
81
81
  const Meta = imports.gi.Meta;
82
82
  ```
83
83
 
84
+
85
+ ### ESM vs. CommonJS
86
+
87
+ GJS supports two different import syntaxes. The new modern ESM syntax and the old global imports syntax.
88
+
89
+ In TypeScript projects for GJS and GNOME Shell extensions, you have the flexibility to use `ESM` syntax and then decide the import syntax for your bundled file. If your bundler is configured to use `CommonJS`, it will convert to the GJS-specific global imports syntax, like `const moduleName = imports.gi[moduleName]`. This is different from the traditional `require` syntax seen in Node.js. The global imports syntax is chosen because it aligns with the CommonJS format supported by NPM, which is used for the generated type definitions and this package.
90
+
91
+ On the other hand, if you configure your bundler to use ESM, it will retain the ESM import syntax. It's crucial to ensure that your bundler is set up to correctly translate and bundle these imports into either CommonJS or ESM format, depending on your project's requirements.
92
+
93
+ This approach is particularly important due to the `@girs` types, which include both `*.cjs `files, using the GJS global imports syntax, and `*.js` files, which utilize the ESM syntax. By appropriately setting up your bundler, you can control which syntax—CommonJS or ESM—is used in your project. The choice of CommonJS in this context is also due to the similarity between the GJS-specific global imports and CommonJS syntax, allowing for easier management and bundling in these specific types of projects.
94
+
95
+ Since GNOME Shell 45, you should only use ESM, even for GNOME Shell extensions. Before that, extensions had to use the global import syntax, unlike normal GJS applications, where ESM has been available for some time.
96
+
84
97
  ### Bundle
85
98
 
86
99
  Depending on your project configuration, it is recommended to use a bundler like [esbuild](https://esbuild.github.io/). You can find examples using different bundlers [here](https://github.com/gjsify/ts-for-gir/tree/main/examples).
@@ -1,9 +1,12 @@
1
1
 
2
-
3
2
  declare module 'gi://Meta?version=10' {
4
3
  import Meta10 from '@girs/meta-10';
5
4
  export default Meta10;
6
5
  }
7
6
 
7
+ declare module 'gi://Meta' {
8
+ import Meta10 from '@girs/meta-10';
9
+ export default Meta10;
10
+ }
8
11
 
9
12
 
@@ -1,5 +1,4 @@
1
1
 
2
-
3
2
  import Meta10 from '@girs/meta-10';
4
3
 
5
4
  declare global {
package/meta-10.d.cts CHANGED
@@ -1992,6 +1992,7 @@ export module Background {
1992
1992
  // Own constructor properties of Meta-10.Meta.Background
1993
1993
 
1994
1994
  meta_display?: Display | null
1995
+ metaDisplay?: Display | null
1995
1996
  }
1996
1997
 
1997
1998
  }
@@ -2001,6 +2002,7 @@ export interface Background {
2001
2002
  // Own properties of Meta-10.Meta.Background
2002
2003
 
2003
2004
  readonly meta_display: Display
2005
+ readonly metaDisplay: Display
2004
2006
 
2005
2007
  // Owm methods of Meta-10.Meta.Background
2006
2008
 
@@ -2063,6 +2065,7 @@ export module BackgroundActor {
2063
2065
 
2064
2066
  meta_display?: Display | null
2065
2067
  monitor?: number | null
2068
+ metaDisplay?: Display | null
2066
2069
  }
2067
2070
 
2068
2071
  }
@@ -2072,6 +2075,7 @@ export interface BackgroundActor extends Atk.ImplementorIface, Clutter.Animatabl
2072
2075
  // Own properties of Meta-10.Meta.BackgroundActor
2073
2076
 
2074
2077
  readonly meta_display: Display
2078
+ readonly metaDisplay: Display
2075
2079
  readonly monitor: number
2076
2080
 
2077
2081
  // Class property signals of Meta-10.Meta.BackgroundActor
@@ -2363,6 +2367,11 @@ export module BackgroundContent {
2363
2367
  rounded_clip_radius?: number | null
2364
2368
  vignette?: boolean | null
2365
2369
  vignette_sharpness?: number | null
2370
+ gradientHeight?: number | null
2371
+ gradientMaxDarkness?: number | null
2372
+ metaDisplay?: Display | null
2373
+ roundedClipRadius?: number | null
2374
+ vignetteSharpness?: number | null
2366
2375
  }
2367
2376
 
2368
2377
  }
@@ -2375,12 +2384,17 @@ export interface BackgroundContent extends Clutter.Content {
2375
2384
  brightness: number
2376
2385
  gradient: boolean
2377
2386
  gradient_height: number
2387
+ gradientHeight: number
2378
2388
  gradient_max_darkness: number
2389
+ gradientMaxDarkness: number
2379
2390
  readonly meta_display: Display
2391
+ readonly metaDisplay: Display
2380
2392
  readonly monitor: number
2381
2393
  rounded_clip_radius: number
2394
+ roundedClipRadius: number
2382
2395
  vignette: boolean
2383
2396
  vignette_sharpness: number
2397
+ vignetteSharpness: number
2384
2398
 
2385
2399
  // Owm methods of Meta-10.Meta.BackgroundContent
2386
2400
 
@@ -3037,6 +3051,7 @@ export module Context {
3037
3051
 
3038
3052
  name?: string | null
3039
3053
  unsafe_mode?: boolean | null
3054
+ unsafeMode?: boolean | null
3040
3055
  }
3041
3056
 
3042
3057
  }
@@ -3047,6 +3062,7 @@ export interface Context {
3047
3062
 
3048
3063
  readonly name: string | null
3049
3064
  unsafe_mode: boolean
3065
+ unsafeMode: boolean
3050
3066
 
3051
3067
  // Own fields of Meta-10.Meta.Context
3052
3068
 
@@ -3429,7 +3445,9 @@ export interface Display {
3429
3445
  // Own properties of Meta-10.Meta.Display
3430
3446
 
3431
3447
  readonly compositor_modifiers: Clutter.ModifierType
3448
+ readonly compositorModifiers: Clutter.ModifierType
3432
3449
  readonly focus_window: Window
3450
+ readonly focusWindow: Window
3433
3451
 
3434
3452
  // Owm methods of Meta-10.Meta.Display
3435
3453
 
@@ -3985,7 +4003,9 @@ export interface MonitorManager {
3985
4003
 
3986
4004
  readonly backend: Backend
3987
4005
  readonly has_builtin_panel: boolean
4006
+ readonly hasBuiltinPanel: boolean
3988
4007
  readonly panel_orientation_managed: boolean
4008
+ readonly panelOrientationManaged: boolean
3989
4009
 
3990
4010
  // Owm methods of Meta-10.Meta.MonitorManager
3991
4011
 
@@ -4276,6 +4296,7 @@ export module RemoteAccessHandle {
4276
4296
  // Own constructor properties of Meta-10.Meta.RemoteAccessHandle
4277
4297
 
4278
4298
  is_recording?: boolean | null
4299
+ isRecording?: boolean | null
4279
4300
  }
4280
4301
 
4281
4302
  }
@@ -4285,6 +4306,7 @@ export interface RemoteAccessHandle {
4285
4306
  // Own properties of Meta-10.Meta.RemoteAccessHandle
4286
4307
 
4287
4308
  readonly is_recording: boolean
4309
+ readonly isRecording: boolean
4288
4310
 
4289
4311
  // Own fields of Meta-10.Meta.RemoteAccessHandle
4290
4312
 
@@ -5166,6 +5188,8 @@ export module StartupSequence {
5166
5188
  timestamp?: number | null
5167
5189
  wmclass?: string | null
5168
5190
  workspace?: number | null
5191
+ applicationId?: string | null
5192
+ iconName?: string | null
5169
5193
  }
5170
5194
 
5171
5195
  }
@@ -5175,7 +5199,9 @@ export interface StartupSequence {
5175
5199
  // Own properties of Meta-10.Meta.StartupSequence
5176
5200
 
5177
5201
  readonly application_id: string | null
5202
+ readonly applicationId: string | null
5178
5203
  readonly icon_name: string | null
5204
+ readonly iconName: string | null
5179
5205
  readonly id: string | null
5180
5206
  readonly name: string | null
5181
5207
  readonly timestamp: number
@@ -5410,30 +5436,48 @@ export interface Window {
5410
5436
 
5411
5437
  readonly above: boolean
5412
5438
  readonly appears_focused: boolean
5439
+ readonly appearsFocused: boolean
5413
5440
  readonly decorated: boolean
5414
5441
  readonly demands_attention: boolean
5442
+ readonly demandsAttention: boolean
5415
5443
  readonly fullscreen: boolean
5416
5444
  readonly gtk_app_menu_object_path: string | null
5445
+ readonly gtkAppMenuObjectPath: string | null
5417
5446
  readonly gtk_application_id: string | null
5447
+ readonly gtkApplicationId: string | null
5418
5448
  readonly gtk_application_object_path: string | null
5449
+ readonly gtkApplicationObjectPath: string | null
5419
5450
  readonly gtk_menubar_object_path: string | null
5451
+ readonly gtkMenubarObjectPath: string | null
5420
5452
  readonly gtk_unique_bus_name: string | null
5453
+ readonly gtkUniqueBusName: string | null
5421
5454
  readonly gtk_window_object_path: string | null
5455
+ readonly gtkWindowObjectPath: string | null
5422
5456
  readonly icon: any
5423
5457
  readonly is_alive: boolean
5458
+ readonly isAlive: boolean
5424
5459
  readonly maximized_horizontally: boolean
5460
+ readonly maximizedHorizontally: boolean
5425
5461
  readonly maximized_vertically: boolean
5462
+ readonly maximizedVertically: boolean
5426
5463
  readonly mini_icon: any
5464
+ readonly miniIcon: any
5427
5465
  readonly minimized: boolean
5428
5466
  readonly mutter_hints: string | null
5467
+ readonly mutterHints: string | null
5429
5468
  readonly on_all_workspaces: boolean
5469
+ readonly onAllWorkspaces: boolean
5430
5470
  readonly resizeable: boolean
5431
5471
  readonly skip_taskbar: boolean
5472
+ readonly skipTaskbar: boolean
5432
5473
  readonly title: string | null
5433
5474
  readonly urgent: boolean
5434
5475
  readonly user_time: number
5476
+ readonly userTime: number
5435
5477
  readonly window_type: WindowType
5478
+ readonly windowType: WindowType
5436
5479
  readonly wm_class: string | null
5480
+ readonly wmClass: string | null
5437
5481
 
5438
5482
  // Owm methods of Meta-10.Meta.Window
5439
5483
 
@@ -5943,6 +5987,7 @@ export module WindowActor {
5943
5987
  // Own constructor properties of Meta-10.Meta.WindowActor
5944
5988
 
5945
5989
  meta_window?: Window | null
5990
+ metaWindow?: Window | null
5946
5991
  }
5947
5992
 
5948
5993
  }
@@ -5952,6 +5997,7 @@ export interface WindowActor extends Atk.ImplementorIface, Clutter.Animatable, C
5952
5997
  // Own properties of Meta-10.Meta.WindowActor
5953
5998
 
5954
5999
  readonly meta_window: Window
6000
+ readonly metaWindow: Window
5955
6001
 
5956
6002
  // Own fields of Meta-10.Meta.WindowActor
5957
6003
 
@@ -6520,7 +6566,9 @@ export interface Workspace {
6520
6566
 
6521
6567
  readonly active: boolean
6522
6568
  readonly n_windows: number
6569
+ readonly nWindows: number
6523
6570
  readonly workspace_index: number
6571
+ readonly workspaceIndex: number
6524
6572
 
6525
6573
  // Owm methods of Meta-10.Meta.Workspace
6526
6574
 
@@ -6678,8 +6726,11 @@ export interface WorkspaceManager {
6678
6726
  // Own properties of Meta-10.Meta.WorkspaceManager
6679
6727
 
6680
6728
  readonly layout_columns: number
6729
+ readonly layoutColumns: number
6681
6730
  readonly layout_rows: number
6731
+ readonly layoutRows: number
6682
6732
  readonly n_workspaces: number
6733
+ readonly nWorkspaces: number
6683
6734
 
6684
6735
  // Owm methods of Meta-10.Meta.WorkspaceManager
6685
6736
 
package/meta-10.d.ts CHANGED
@@ -1994,6 +1994,7 @@ module Background {
1994
1994
  // Own constructor properties of Meta-10.Meta.Background
1995
1995
 
1996
1996
  meta_display?: Display | null
1997
+ metaDisplay?: Display | null
1997
1998
  }
1998
1999
 
1999
2000
  }
@@ -2003,6 +2004,7 @@ interface Background {
2003
2004
  // Own properties of Meta-10.Meta.Background
2004
2005
 
2005
2006
  readonly meta_display: Display
2007
+ readonly metaDisplay: Display
2006
2008
 
2007
2009
  // Owm methods of Meta-10.Meta.Background
2008
2010
 
@@ -2065,6 +2067,7 @@ module BackgroundActor {
2065
2067
 
2066
2068
  meta_display?: Display | null
2067
2069
  monitor?: number | null
2070
+ metaDisplay?: Display | null
2068
2071
  }
2069
2072
 
2070
2073
  }
@@ -2074,6 +2077,7 @@ interface BackgroundActor extends Atk.ImplementorIface, Clutter.Animatable, Clut
2074
2077
  // Own properties of Meta-10.Meta.BackgroundActor
2075
2078
 
2076
2079
  readonly meta_display: Display
2080
+ readonly metaDisplay: Display
2077
2081
  readonly monitor: number
2078
2082
 
2079
2083
  // Class property signals of Meta-10.Meta.BackgroundActor
@@ -2365,6 +2369,11 @@ module BackgroundContent {
2365
2369
  rounded_clip_radius?: number | null
2366
2370
  vignette?: boolean | null
2367
2371
  vignette_sharpness?: number | null
2372
+ gradientHeight?: number | null
2373
+ gradientMaxDarkness?: number | null
2374
+ metaDisplay?: Display | null
2375
+ roundedClipRadius?: number | null
2376
+ vignetteSharpness?: number | null
2368
2377
  }
2369
2378
 
2370
2379
  }
@@ -2377,12 +2386,17 @@ interface BackgroundContent extends Clutter.Content {
2377
2386
  brightness: number
2378
2387
  gradient: boolean
2379
2388
  gradient_height: number
2389
+ gradientHeight: number
2380
2390
  gradient_max_darkness: number
2391
+ gradientMaxDarkness: number
2381
2392
  readonly meta_display: Display
2393
+ readonly metaDisplay: Display
2382
2394
  readonly monitor: number
2383
2395
  rounded_clip_radius: number
2396
+ roundedClipRadius: number
2384
2397
  vignette: boolean
2385
2398
  vignette_sharpness: number
2399
+ vignetteSharpness: number
2386
2400
 
2387
2401
  // Owm methods of Meta-10.Meta.BackgroundContent
2388
2402
 
@@ -3039,6 +3053,7 @@ module Context {
3039
3053
 
3040
3054
  name?: string | null
3041
3055
  unsafe_mode?: boolean | null
3056
+ unsafeMode?: boolean | null
3042
3057
  }
3043
3058
 
3044
3059
  }
@@ -3049,6 +3064,7 @@ interface Context {
3049
3064
 
3050
3065
  readonly name: string | null
3051
3066
  unsafe_mode: boolean
3067
+ unsafeMode: boolean
3052
3068
 
3053
3069
  // Own fields of Meta-10.Meta.Context
3054
3070
 
@@ -3431,7 +3447,9 @@ interface Display {
3431
3447
  // Own properties of Meta-10.Meta.Display
3432
3448
 
3433
3449
  readonly compositor_modifiers: Clutter.ModifierType
3450
+ readonly compositorModifiers: Clutter.ModifierType
3434
3451
  readonly focus_window: Window
3452
+ readonly focusWindow: Window
3435
3453
 
3436
3454
  // Owm methods of Meta-10.Meta.Display
3437
3455
 
@@ -3987,7 +4005,9 @@ interface MonitorManager {
3987
4005
 
3988
4006
  readonly backend: Backend
3989
4007
  readonly has_builtin_panel: boolean
4008
+ readonly hasBuiltinPanel: boolean
3990
4009
  readonly panel_orientation_managed: boolean
4010
+ readonly panelOrientationManaged: boolean
3991
4011
 
3992
4012
  // Owm methods of Meta-10.Meta.MonitorManager
3993
4013
 
@@ -4278,6 +4298,7 @@ module RemoteAccessHandle {
4278
4298
  // Own constructor properties of Meta-10.Meta.RemoteAccessHandle
4279
4299
 
4280
4300
  is_recording?: boolean | null
4301
+ isRecording?: boolean | null
4281
4302
  }
4282
4303
 
4283
4304
  }
@@ -4287,6 +4308,7 @@ interface RemoteAccessHandle {
4287
4308
  // Own properties of Meta-10.Meta.RemoteAccessHandle
4288
4309
 
4289
4310
  readonly is_recording: boolean
4311
+ readonly isRecording: boolean
4290
4312
 
4291
4313
  // Own fields of Meta-10.Meta.RemoteAccessHandle
4292
4314
 
@@ -5168,6 +5190,8 @@ module StartupSequence {
5168
5190
  timestamp?: number | null
5169
5191
  wmclass?: string | null
5170
5192
  workspace?: number | null
5193
+ applicationId?: string | null
5194
+ iconName?: string | null
5171
5195
  }
5172
5196
 
5173
5197
  }
@@ -5177,7 +5201,9 @@ interface StartupSequence {
5177
5201
  // Own properties of Meta-10.Meta.StartupSequence
5178
5202
 
5179
5203
  readonly application_id: string | null
5204
+ readonly applicationId: string | null
5180
5205
  readonly icon_name: string | null
5206
+ readonly iconName: string | null
5181
5207
  readonly id: string | null
5182
5208
  readonly name: string | null
5183
5209
  readonly timestamp: number
@@ -5412,30 +5438,48 @@ interface Window {
5412
5438
 
5413
5439
  readonly above: boolean
5414
5440
  readonly appears_focused: boolean
5441
+ readonly appearsFocused: boolean
5415
5442
  readonly decorated: boolean
5416
5443
  readonly demands_attention: boolean
5444
+ readonly demandsAttention: boolean
5417
5445
  readonly fullscreen: boolean
5418
5446
  readonly gtk_app_menu_object_path: string | null
5447
+ readonly gtkAppMenuObjectPath: string | null
5419
5448
  readonly gtk_application_id: string | null
5449
+ readonly gtkApplicationId: string | null
5420
5450
  readonly gtk_application_object_path: string | null
5451
+ readonly gtkApplicationObjectPath: string | null
5421
5452
  readonly gtk_menubar_object_path: string | null
5453
+ readonly gtkMenubarObjectPath: string | null
5422
5454
  readonly gtk_unique_bus_name: string | null
5455
+ readonly gtkUniqueBusName: string | null
5423
5456
  readonly gtk_window_object_path: string | null
5457
+ readonly gtkWindowObjectPath: string | null
5424
5458
  readonly icon: any
5425
5459
  readonly is_alive: boolean
5460
+ readonly isAlive: boolean
5426
5461
  readonly maximized_horizontally: boolean
5462
+ readonly maximizedHorizontally: boolean
5427
5463
  readonly maximized_vertically: boolean
5464
+ readonly maximizedVertically: boolean
5428
5465
  readonly mini_icon: any
5466
+ readonly miniIcon: any
5429
5467
  readonly minimized: boolean
5430
5468
  readonly mutter_hints: string | null
5469
+ readonly mutterHints: string | null
5431
5470
  readonly on_all_workspaces: boolean
5471
+ readonly onAllWorkspaces: boolean
5432
5472
  readonly resizeable: boolean
5433
5473
  readonly skip_taskbar: boolean
5474
+ readonly skipTaskbar: boolean
5434
5475
  readonly title: string | null
5435
5476
  readonly urgent: boolean
5436
5477
  readonly user_time: number
5478
+ readonly userTime: number
5437
5479
  readonly window_type: WindowType
5480
+ readonly windowType: WindowType
5438
5481
  readonly wm_class: string | null
5482
+ readonly wmClass: string | null
5439
5483
 
5440
5484
  // Owm methods of Meta-10.Meta.Window
5441
5485
 
@@ -5945,6 +5989,7 @@ module WindowActor {
5945
5989
  // Own constructor properties of Meta-10.Meta.WindowActor
5946
5990
 
5947
5991
  meta_window?: Window | null
5992
+ metaWindow?: Window | null
5948
5993
  }
5949
5994
 
5950
5995
  }
@@ -5954,6 +5999,7 @@ interface WindowActor extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
5954
5999
  // Own properties of Meta-10.Meta.WindowActor
5955
6000
 
5956
6001
  readonly meta_window: Window
6002
+ readonly metaWindow: Window
5957
6003
 
5958
6004
  // Own fields of Meta-10.Meta.WindowActor
5959
6005
 
@@ -6522,7 +6568,9 @@ interface Workspace {
6522
6568
 
6523
6569
  readonly active: boolean
6524
6570
  readonly n_windows: number
6571
+ readonly nWindows: number
6525
6572
  readonly workspace_index: number
6573
+ readonly workspaceIndex: number
6526
6574
 
6527
6575
  // Owm methods of Meta-10.Meta.Workspace
6528
6576
 
@@ -6680,8 +6728,11 @@ interface WorkspaceManager {
6680
6728
  // Own properties of Meta-10.Meta.WorkspaceManager
6681
6729
 
6682
6730
  readonly layout_columns: number
6731
+ readonly layoutColumns: number
6683
6732
  readonly layout_rows: number
6733
+ readonly layoutRows: number
6684
6734
  readonly n_workspaces: number
6735
+ readonly nWorkspaces: number
6685
6736
 
6686
6737
  // Owm methods of Meta-10.Meta.WorkspaceManager
6687
6738
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@girs/meta-10",
3
- "version": "10.0.0-3.2.4",
3
+ "version": "10.0.0-3.2.6",
4
4
  "description": "GJS TypeScript type definitions for Meta-10, generated from library version 10.0.0",
5
5
  "type": "module",
6
6
  "module": "meta-10.js",
@@ -25,29 +25,29 @@
25
25
  "test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit meta-10.d.cts"
26
26
  },
27
27
  "dependencies": {
28
- "@girs/atk-1.0": "^2.50.0-3.2.4",
29
- "@girs/cairo-1.0": "^1.0.0-3.2.4",
30
- "@girs/clutter-10": "^10.0.0-3.2.4",
31
- "@girs/cogl-10": "^10.0.0-3.2.4",
32
- "@girs/coglpango-10": "^10.0.0-3.2.4",
33
- "@girs/freetype2-2.0": "^2.0.0-3.2.4",
34
- "@girs/gdesktopenums-3.0": "^3.0.0-3.2.4",
35
- "@girs/gdk-3.0": "^3.24.38-3.2.4",
36
- "@girs/gdkpixbuf-2.0": "^2.0.0-3.2.4",
37
- "@girs/gio-2.0": "^2.78.0-3.2.4",
38
- "@girs/gjs": "^3.2.4",
39
- "@girs/gl-1.0": "^1.0.0-3.2.4",
40
- "@girs/glib-2.0": "^2.78.0-3.2.4",
41
- "@girs/gmodule-2.0": "^2.0.0-3.2.4",
42
- "@girs/gobject-2.0": "^2.78.0-3.2.4",
43
- "@girs/graphene-1.0": "^1.0.0-3.2.4",
44
- "@girs/gtk-3.0": "^3.24.38-3.2.4",
45
- "@girs/harfbuzz-0.0": "^8.2.1-3.2.4",
46
- "@girs/json-1.0": "^1.7.1-3.2.4",
47
- "@girs/pango-1.0": "^1.51.0-3.2.4",
48
- "@girs/pangocairo-1.0": "^1.0.0-3.2.4",
49
- "@girs/xfixes-4.0": "^4.0.0-3.2.4",
50
- "@girs/xlib-2.0": "^2.0.0-3.2.4"
28
+ "@girs/atk-1.0": "^2.50.0-3.2.6",
29
+ "@girs/cairo-1.0": "^1.0.0-3.2.6",
30
+ "@girs/clutter-10": "^10.0.0-3.2.6",
31
+ "@girs/cogl-10": "^10.0.0-3.2.6",
32
+ "@girs/coglpango-10": "^10.0.0-3.2.6",
33
+ "@girs/freetype2-2.0": "^2.0.0-3.2.6",
34
+ "@girs/gdesktopenums-3.0": "^3.0.0-3.2.6",
35
+ "@girs/gdk-3.0": "^3.24.38-3.2.6",
36
+ "@girs/gdkpixbuf-2.0": "^2.0.0-3.2.6",
37
+ "@girs/gio-2.0": "^2.78.0-3.2.6",
38
+ "@girs/gjs": "^3.2.6",
39
+ "@girs/gl-1.0": "^1.0.0-3.2.6",
40
+ "@girs/glib-2.0": "^2.78.0-3.2.6",
41
+ "@girs/gmodule-2.0": "^2.0.0-3.2.6",
42
+ "@girs/gobject-2.0": "^2.78.0-3.2.6",
43
+ "@girs/graphene-1.0": "^1.0.0-3.2.6",
44
+ "@girs/gtk-3.0": "^3.24.38-3.2.6",
45
+ "@girs/harfbuzz-0.0": "^8.2.1-3.2.6",
46
+ "@girs/json-1.0": "^1.7.1-3.2.6",
47
+ "@girs/pango-1.0": "^1.51.0-3.2.6",
48
+ "@girs/pangocairo-1.0": "^1.0.0-3.2.6",
49
+ "@girs/xfixes-4.0": "^4.0.0-3.2.6",
50
+ "@girs/xlib-2.0": "^2.0.0-3.2.6"
51
51
  },
52
52
  "devDependencies": {
53
53
  "typescript": "*"