@girs/granite-7.0 7.0.0-3.2.3 → 7.0.0-3.2.5
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 +14 -1
- package/granite-7.0-ambient.d.ts +4 -1
- package/granite-7.0-import.d.ts +0 -1
- package/granite-7.0.d.cts +23 -2
- package/granite-7.0.d.ts +23 -2
- package/package.json +17 -17
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|

|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
GJS TypeScript type definitions for Granite-7.0, generated from library version 7.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.
|
|
8
|
+
GJS TypeScript type definitions for Granite-7.0, generated from library version 7.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.5.
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
## Install
|
|
@@ -81,6 +81,19 @@ Now you have also type support for this, too:
|
|
|
81
81
|
const Granite = imports.gi.Granite;
|
|
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).
|
package/granite-7.0-ambient.d.ts
CHANGED
package/granite-7.0-import.d.ts
CHANGED
package/granite-7.0.d.cts
CHANGED
|
@@ -14,12 +14,12 @@ import './granite-7.0-import.d.ts';
|
|
|
14
14
|
|
|
15
15
|
import type Gdk from '@girs/gdk-4.0';
|
|
16
16
|
import type cairo from '@girs/cairo-1.0';
|
|
17
|
+
import type GObject from '@girs/gobject-2.0';
|
|
18
|
+
import type GLib from '@girs/glib-2.0';
|
|
17
19
|
import type PangoCairo from '@girs/pangocairo-1.0';
|
|
18
20
|
import type Pango from '@girs/pango-1.0';
|
|
19
21
|
import type HarfBuzz from '@girs/harfbuzz-0.0';
|
|
20
22
|
import type freetype2 from '@girs/freetype2-2.0';
|
|
21
|
-
import type GObject from '@girs/gobject-2.0';
|
|
22
|
-
import type GLib from '@girs/glib-2.0';
|
|
23
23
|
import type Gio from '@girs/gio-2.0';
|
|
24
24
|
import type GdkPixbuf from '@girs/gdkpixbuf-2.0';
|
|
25
25
|
import type GModule from '@girs/gmodule-2.0';
|
|
@@ -374,6 +374,9 @@ export interface SettingsPage {
|
|
|
374
374
|
connect(sigName: "notify::child", callback: (($obj: SettingsPage, pspec: GObject.ParamSpec) => void)): number
|
|
375
375
|
connect_after(sigName: "notify::child", callback: (($obj: SettingsPage, pspec: GObject.ParamSpec) => void)): number
|
|
376
376
|
emit(sigName: "notify::child", ...args: any[]): void
|
|
377
|
+
connect(sigName: "notify::baseline-child", callback: (($obj: SettingsPage, pspec: GObject.ParamSpec) => void)): number
|
|
378
|
+
connect_after(sigName: "notify::baseline-child", callback: (($obj: SettingsPage, pspec: GObject.ParamSpec) => void)): number
|
|
379
|
+
emit(sigName: "notify::baseline-child", ...args: any[]): void
|
|
377
380
|
connect(sigName: "notify::baseline-position", callback: (($obj: SettingsPage, pspec: GObject.ParamSpec) => void)): number
|
|
378
381
|
connect_after(sigName: "notify::baseline-position", callback: (($obj: SettingsPage, pspec: GObject.ParamSpec) => void)): number
|
|
379
382
|
emit(sigName: "notify::baseline-position", ...args: any[]): void
|
|
@@ -582,6 +585,9 @@ export interface SimpleSettingsPage {
|
|
|
582
585
|
connect(sigName: "notify::child", callback: (($obj: SimpleSettingsPage, pspec: GObject.ParamSpec) => void)): number
|
|
583
586
|
connect_after(sigName: "notify::child", callback: (($obj: SimpleSettingsPage, pspec: GObject.ParamSpec) => void)): number
|
|
584
587
|
emit(sigName: "notify::child", ...args: any[]): void
|
|
588
|
+
connect(sigName: "notify::baseline-child", callback: (($obj: SimpleSettingsPage, pspec: GObject.ParamSpec) => void)): number
|
|
589
|
+
connect_after(sigName: "notify::baseline-child", callback: (($obj: SimpleSettingsPage, pspec: GObject.ParamSpec) => void)): number
|
|
590
|
+
emit(sigName: "notify::baseline-child", ...args: any[]): void
|
|
585
591
|
connect(sigName: "notify::baseline-position", callback: (($obj: SimpleSettingsPage, pspec: GObject.ParamSpec) => void)): number
|
|
586
592
|
connect_after(sigName: "notify::baseline-position", callback: (($obj: SimpleSettingsPage, pspec: GObject.ParamSpec) => void)): number
|
|
587
593
|
emit(sigName: "notify::baseline-position", ...args: any[]): void
|
|
@@ -759,6 +765,9 @@ export interface AccelLabel {
|
|
|
759
765
|
connect(sigName: "notify::label", callback: (($obj: AccelLabel, pspec: GObject.ParamSpec) => void)): number
|
|
760
766
|
connect_after(sigName: "notify::label", callback: (($obj: AccelLabel, pspec: GObject.ParamSpec) => void)): number
|
|
761
767
|
emit(sigName: "notify::label", ...args: any[]): void
|
|
768
|
+
connect(sigName: "notify::baseline-child", callback: (($obj: AccelLabel, pspec: GObject.ParamSpec) => void)): number
|
|
769
|
+
connect_after(sigName: "notify::baseline-child", callback: (($obj: AccelLabel, pspec: GObject.ParamSpec) => void)): number
|
|
770
|
+
emit(sigName: "notify::baseline-child", ...args: any[]): void
|
|
762
771
|
connect(sigName: "notify::baseline-position", callback: (($obj: AccelLabel, pspec: GObject.ParamSpec) => void)): number
|
|
763
772
|
connect_after(sigName: "notify::baseline-position", callback: (($obj: AccelLabel, pspec: GObject.ParamSpec) => void)): number
|
|
764
773
|
emit(sigName: "notify::baseline-position", ...args: any[]): void
|
|
@@ -1271,6 +1280,9 @@ export interface Dialog {
|
|
|
1271
1280
|
connect(sigName: "notify::startup-id", callback: (($obj: Dialog, pspec: GObject.ParamSpec) => void)): number
|
|
1272
1281
|
connect_after(sigName: "notify::startup-id", callback: (($obj: Dialog, pspec: GObject.ParamSpec) => void)): number
|
|
1273
1282
|
emit(sigName: "notify::startup-id", ...args: any[]): void
|
|
1283
|
+
connect(sigName: "notify::suspended", callback: (($obj: Dialog, pspec: GObject.ParamSpec) => void)): number
|
|
1284
|
+
connect_after(sigName: "notify::suspended", callback: (($obj: Dialog, pspec: GObject.ParamSpec) => void)): number
|
|
1285
|
+
emit(sigName: "notify::suspended", ...args: any[]): void
|
|
1274
1286
|
connect(sigName: "notify::title", callback: (($obj: Dialog, pspec: GObject.ParamSpec) => void)): number
|
|
1275
1287
|
connect_after(sigName: "notify::title", callback: (($obj: Dialog, pspec: GObject.ParamSpec) => void)): number
|
|
1276
1288
|
emit(sigName: "notify::title", ...args: any[]): void
|
|
@@ -1936,6 +1948,9 @@ export interface MessageDialog {
|
|
|
1936
1948
|
connect(sigName: "notify::startup-id", callback: (($obj: MessageDialog, pspec: GObject.ParamSpec) => void)): number
|
|
1937
1949
|
connect_after(sigName: "notify::startup-id", callback: (($obj: MessageDialog, pspec: GObject.ParamSpec) => void)): number
|
|
1938
1950
|
emit(sigName: "notify::startup-id", ...args: any[]): void
|
|
1951
|
+
connect(sigName: "notify::suspended", callback: (($obj: MessageDialog, pspec: GObject.ParamSpec) => void)): number
|
|
1952
|
+
connect_after(sigName: "notify::suspended", callback: (($obj: MessageDialog, pspec: GObject.ParamSpec) => void)): number
|
|
1953
|
+
emit(sigName: "notify::suspended", ...args: any[]): void
|
|
1939
1954
|
connect(sigName: "notify::title", callback: (($obj: MessageDialog, pspec: GObject.ParamSpec) => void)): number
|
|
1940
1955
|
connect_after(sigName: "notify::title", callback: (($obj: MessageDialog, pspec: GObject.ParamSpec) => void)): number
|
|
1941
1956
|
emit(sigName: "notify::title", ...args: any[]): void
|
|
@@ -2158,6 +2173,9 @@ export interface ModeSwitch {
|
|
|
2158
2173
|
connect(sigName: "notify::secondary-icon-tooltip-text", callback: (($obj: ModeSwitch, pspec: GObject.ParamSpec) => void)): number
|
|
2159
2174
|
connect_after(sigName: "notify::secondary-icon-tooltip-text", callback: (($obj: ModeSwitch, pspec: GObject.ParamSpec) => void)): number
|
|
2160
2175
|
emit(sigName: "notify::secondary-icon-tooltip-text", ...args: any[]): void
|
|
2176
|
+
connect(sigName: "notify::baseline-child", callback: (($obj: ModeSwitch, pspec: GObject.ParamSpec) => void)): number
|
|
2177
|
+
connect_after(sigName: "notify::baseline-child", callback: (($obj: ModeSwitch, pspec: GObject.ParamSpec) => void)): number
|
|
2178
|
+
emit(sigName: "notify::baseline-child", ...args: any[]): void
|
|
2161
2179
|
connect(sigName: "notify::baseline-position", callback: (($obj: ModeSwitch, pspec: GObject.ParamSpec) => void)): number
|
|
2162
2180
|
connect_after(sigName: "notify::baseline-position", callback: (($obj: ModeSwitch, pspec: GObject.ParamSpec) => void)): number
|
|
2163
2181
|
emit(sigName: "notify::baseline-position", ...args: any[]): void
|
|
@@ -2882,6 +2900,9 @@ export interface SwitchModelButton {
|
|
|
2882
2900
|
connect(sigName: "notify::group", callback: (($obj: SwitchModelButton, pspec: GObject.ParamSpec) => void)): number
|
|
2883
2901
|
connect_after(sigName: "notify::group", callback: (($obj: SwitchModelButton, pspec: GObject.ParamSpec) => void)): number
|
|
2884
2902
|
emit(sigName: "notify::group", ...args: any[]): void
|
|
2903
|
+
connect(sigName: "notify::can-shrink", callback: (($obj: SwitchModelButton, pspec: GObject.ParamSpec) => void)): number
|
|
2904
|
+
connect_after(sigName: "notify::can-shrink", callback: (($obj: SwitchModelButton, pspec: GObject.ParamSpec) => void)): number
|
|
2905
|
+
emit(sigName: "notify::can-shrink", ...args: any[]): void
|
|
2885
2906
|
connect(sigName: "notify::child", callback: (($obj: SwitchModelButton, pspec: GObject.ParamSpec) => void)): number
|
|
2886
2907
|
connect_after(sigName: "notify::child", callback: (($obj: SwitchModelButton, pspec: GObject.ParamSpec) => void)): number
|
|
2887
2908
|
emit(sigName: "notify::child", ...args: any[]): void
|
package/granite-7.0.d.ts
CHANGED
|
@@ -14,12 +14,12 @@ import './granite-7.0-import.d.ts';
|
|
|
14
14
|
|
|
15
15
|
import type Gdk from '@girs/gdk-4.0';
|
|
16
16
|
import type cairo from '@girs/cairo-1.0';
|
|
17
|
+
import type GObject from '@girs/gobject-2.0';
|
|
18
|
+
import type GLib from '@girs/glib-2.0';
|
|
17
19
|
import type PangoCairo from '@girs/pangocairo-1.0';
|
|
18
20
|
import type Pango from '@girs/pango-1.0';
|
|
19
21
|
import type HarfBuzz from '@girs/harfbuzz-0.0';
|
|
20
22
|
import type freetype2 from '@girs/freetype2-2.0';
|
|
21
|
-
import type GObject from '@girs/gobject-2.0';
|
|
22
|
-
import type GLib from '@girs/glib-2.0';
|
|
23
23
|
import type Gio from '@girs/gio-2.0';
|
|
24
24
|
import type GdkPixbuf from '@girs/gdkpixbuf-2.0';
|
|
25
25
|
import type GModule from '@girs/gmodule-2.0';
|
|
@@ -376,6 +376,9 @@ interface SettingsPage {
|
|
|
376
376
|
connect(sigName: "notify::child", callback: (($obj: SettingsPage, pspec: GObject.ParamSpec) => void)): number
|
|
377
377
|
connect_after(sigName: "notify::child", callback: (($obj: SettingsPage, pspec: GObject.ParamSpec) => void)): number
|
|
378
378
|
emit(sigName: "notify::child", ...args: any[]): void
|
|
379
|
+
connect(sigName: "notify::baseline-child", callback: (($obj: SettingsPage, pspec: GObject.ParamSpec) => void)): number
|
|
380
|
+
connect_after(sigName: "notify::baseline-child", callback: (($obj: SettingsPage, pspec: GObject.ParamSpec) => void)): number
|
|
381
|
+
emit(sigName: "notify::baseline-child", ...args: any[]): void
|
|
379
382
|
connect(sigName: "notify::baseline-position", callback: (($obj: SettingsPage, pspec: GObject.ParamSpec) => void)): number
|
|
380
383
|
connect_after(sigName: "notify::baseline-position", callback: (($obj: SettingsPage, pspec: GObject.ParamSpec) => void)): number
|
|
381
384
|
emit(sigName: "notify::baseline-position", ...args: any[]): void
|
|
@@ -584,6 +587,9 @@ interface SimpleSettingsPage {
|
|
|
584
587
|
connect(sigName: "notify::child", callback: (($obj: SimpleSettingsPage, pspec: GObject.ParamSpec) => void)): number
|
|
585
588
|
connect_after(sigName: "notify::child", callback: (($obj: SimpleSettingsPage, pspec: GObject.ParamSpec) => void)): number
|
|
586
589
|
emit(sigName: "notify::child", ...args: any[]): void
|
|
590
|
+
connect(sigName: "notify::baseline-child", callback: (($obj: SimpleSettingsPage, pspec: GObject.ParamSpec) => void)): number
|
|
591
|
+
connect_after(sigName: "notify::baseline-child", callback: (($obj: SimpleSettingsPage, pspec: GObject.ParamSpec) => void)): number
|
|
592
|
+
emit(sigName: "notify::baseline-child", ...args: any[]): void
|
|
587
593
|
connect(sigName: "notify::baseline-position", callback: (($obj: SimpleSettingsPage, pspec: GObject.ParamSpec) => void)): number
|
|
588
594
|
connect_after(sigName: "notify::baseline-position", callback: (($obj: SimpleSettingsPage, pspec: GObject.ParamSpec) => void)): number
|
|
589
595
|
emit(sigName: "notify::baseline-position", ...args: any[]): void
|
|
@@ -761,6 +767,9 @@ interface AccelLabel {
|
|
|
761
767
|
connect(sigName: "notify::label", callback: (($obj: AccelLabel, pspec: GObject.ParamSpec) => void)): number
|
|
762
768
|
connect_after(sigName: "notify::label", callback: (($obj: AccelLabel, pspec: GObject.ParamSpec) => void)): number
|
|
763
769
|
emit(sigName: "notify::label", ...args: any[]): void
|
|
770
|
+
connect(sigName: "notify::baseline-child", callback: (($obj: AccelLabel, pspec: GObject.ParamSpec) => void)): number
|
|
771
|
+
connect_after(sigName: "notify::baseline-child", callback: (($obj: AccelLabel, pspec: GObject.ParamSpec) => void)): number
|
|
772
|
+
emit(sigName: "notify::baseline-child", ...args: any[]): void
|
|
764
773
|
connect(sigName: "notify::baseline-position", callback: (($obj: AccelLabel, pspec: GObject.ParamSpec) => void)): number
|
|
765
774
|
connect_after(sigName: "notify::baseline-position", callback: (($obj: AccelLabel, pspec: GObject.ParamSpec) => void)): number
|
|
766
775
|
emit(sigName: "notify::baseline-position", ...args: any[]): void
|
|
@@ -1273,6 +1282,9 @@ interface Dialog {
|
|
|
1273
1282
|
connect(sigName: "notify::startup-id", callback: (($obj: Dialog, pspec: GObject.ParamSpec) => void)): number
|
|
1274
1283
|
connect_after(sigName: "notify::startup-id", callback: (($obj: Dialog, pspec: GObject.ParamSpec) => void)): number
|
|
1275
1284
|
emit(sigName: "notify::startup-id", ...args: any[]): void
|
|
1285
|
+
connect(sigName: "notify::suspended", callback: (($obj: Dialog, pspec: GObject.ParamSpec) => void)): number
|
|
1286
|
+
connect_after(sigName: "notify::suspended", callback: (($obj: Dialog, pspec: GObject.ParamSpec) => void)): number
|
|
1287
|
+
emit(sigName: "notify::suspended", ...args: any[]): void
|
|
1276
1288
|
connect(sigName: "notify::title", callback: (($obj: Dialog, pspec: GObject.ParamSpec) => void)): number
|
|
1277
1289
|
connect_after(sigName: "notify::title", callback: (($obj: Dialog, pspec: GObject.ParamSpec) => void)): number
|
|
1278
1290
|
emit(sigName: "notify::title", ...args: any[]): void
|
|
@@ -1938,6 +1950,9 @@ interface MessageDialog {
|
|
|
1938
1950
|
connect(sigName: "notify::startup-id", callback: (($obj: MessageDialog, pspec: GObject.ParamSpec) => void)): number
|
|
1939
1951
|
connect_after(sigName: "notify::startup-id", callback: (($obj: MessageDialog, pspec: GObject.ParamSpec) => void)): number
|
|
1940
1952
|
emit(sigName: "notify::startup-id", ...args: any[]): void
|
|
1953
|
+
connect(sigName: "notify::suspended", callback: (($obj: MessageDialog, pspec: GObject.ParamSpec) => void)): number
|
|
1954
|
+
connect_after(sigName: "notify::suspended", callback: (($obj: MessageDialog, pspec: GObject.ParamSpec) => void)): number
|
|
1955
|
+
emit(sigName: "notify::suspended", ...args: any[]): void
|
|
1941
1956
|
connect(sigName: "notify::title", callback: (($obj: MessageDialog, pspec: GObject.ParamSpec) => void)): number
|
|
1942
1957
|
connect_after(sigName: "notify::title", callback: (($obj: MessageDialog, pspec: GObject.ParamSpec) => void)): number
|
|
1943
1958
|
emit(sigName: "notify::title", ...args: any[]): void
|
|
@@ -2160,6 +2175,9 @@ interface ModeSwitch {
|
|
|
2160
2175
|
connect(sigName: "notify::secondary-icon-tooltip-text", callback: (($obj: ModeSwitch, pspec: GObject.ParamSpec) => void)): number
|
|
2161
2176
|
connect_after(sigName: "notify::secondary-icon-tooltip-text", callback: (($obj: ModeSwitch, pspec: GObject.ParamSpec) => void)): number
|
|
2162
2177
|
emit(sigName: "notify::secondary-icon-tooltip-text", ...args: any[]): void
|
|
2178
|
+
connect(sigName: "notify::baseline-child", callback: (($obj: ModeSwitch, pspec: GObject.ParamSpec) => void)): number
|
|
2179
|
+
connect_after(sigName: "notify::baseline-child", callback: (($obj: ModeSwitch, pspec: GObject.ParamSpec) => void)): number
|
|
2180
|
+
emit(sigName: "notify::baseline-child", ...args: any[]): void
|
|
2163
2181
|
connect(sigName: "notify::baseline-position", callback: (($obj: ModeSwitch, pspec: GObject.ParamSpec) => void)): number
|
|
2164
2182
|
connect_after(sigName: "notify::baseline-position", callback: (($obj: ModeSwitch, pspec: GObject.ParamSpec) => void)): number
|
|
2165
2183
|
emit(sigName: "notify::baseline-position", ...args: any[]): void
|
|
@@ -2884,6 +2902,9 @@ interface SwitchModelButton {
|
|
|
2884
2902
|
connect(sigName: "notify::group", callback: (($obj: SwitchModelButton, pspec: GObject.ParamSpec) => void)): number
|
|
2885
2903
|
connect_after(sigName: "notify::group", callback: (($obj: SwitchModelButton, pspec: GObject.ParamSpec) => void)): number
|
|
2886
2904
|
emit(sigName: "notify::group", ...args: any[]): void
|
|
2905
|
+
connect(sigName: "notify::can-shrink", callback: (($obj: SwitchModelButton, pspec: GObject.ParamSpec) => void)): number
|
|
2906
|
+
connect_after(sigName: "notify::can-shrink", callback: (($obj: SwitchModelButton, pspec: GObject.ParamSpec) => void)): number
|
|
2907
|
+
emit(sigName: "notify::can-shrink", ...args: any[]): void
|
|
2887
2908
|
connect(sigName: "notify::child", callback: (($obj: SwitchModelButton, pspec: GObject.ParamSpec) => void)): number
|
|
2888
2909
|
connect_after(sigName: "notify::child", callback: (($obj: SwitchModelButton, pspec: GObject.ParamSpec) => void)): number
|
|
2889
2910
|
emit(sigName: "notify::child", ...args: any[]): void
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/granite-7.0",
|
|
3
|
-
"version": "7.0.0-3.2.
|
|
3
|
+
"version": "7.0.0-3.2.5",
|
|
4
4
|
"description": "GJS TypeScript type definitions for Granite-7.0, generated from library version 7.0.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "granite-7.0.js",
|
|
@@ -25,22 +25,22 @@
|
|
|
25
25
|
"test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit granite-7.0.d.cts"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@girs/cairo-1.0": "^1.0.0-3.2.
|
|
29
|
-
"@girs/freetype2-2.0": "^2.0.0-3.2.
|
|
30
|
-
"@girs/gdk-4.0": "^4.0.0-3.2.
|
|
31
|
-
"@girs/gdkpixbuf-2.0": "^2.0.0-3.2.
|
|
32
|
-
"@girs/gee-0.8": "^0.8.0-3.2.
|
|
33
|
-
"@girs/gio-2.0": "^2.
|
|
34
|
-
"@girs/gjs": "^3.2.
|
|
35
|
-
"@girs/glib-2.0": "^2.
|
|
36
|
-
"@girs/gmodule-2.0": "^2.0.0-3.2.
|
|
37
|
-
"@girs/gobject-2.0": "^2.
|
|
38
|
-
"@girs/graphene-1.0": "^1.0.0-3.2.
|
|
39
|
-
"@girs/gsk-4.0": "^4.0.0-3.2.
|
|
40
|
-
"@girs/gtk-4.0": "^4.
|
|
41
|
-
"@girs/harfbuzz-0.0": "^
|
|
42
|
-
"@girs/pango-1.0": "^1.
|
|
43
|
-
"@girs/pangocairo-1.0": "^1.0.0-3.2.
|
|
28
|
+
"@girs/cairo-1.0": "^1.0.0-3.2.5",
|
|
29
|
+
"@girs/freetype2-2.0": "^2.0.0-3.2.5",
|
|
30
|
+
"@girs/gdk-4.0": "^4.0.0-3.2.5",
|
|
31
|
+
"@girs/gdkpixbuf-2.0": "^2.0.0-3.2.5",
|
|
32
|
+
"@girs/gee-0.8": "^0.8.0-3.2.5",
|
|
33
|
+
"@girs/gio-2.0": "^2.78.0-3.2.5",
|
|
34
|
+
"@girs/gjs": "^3.2.5",
|
|
35
|
+
"@girs/glib-2.0": "^2.78.0-3.2.5",
|
|
36
|
+
"@girs/gmodule-2.0": "^2.0.0-3.2.5",
|
|
37
|
+
"@girs/gobject-2.0": "^2.78.0-3.2.5",
|
|
38
|
+
"@girs/graphene-1.0": "^1.0.0-3.2.5",
|
|
39
|
+
"@girs/gsk-4.0": "^4.0.0-3.2.5",
|
|
40
|
+
"@girs/gtk-4.0": "^4.12.3-3.2.5",
|
|
41
|
+
"@girs/harfbuzz-0.0": "^8.2.1-3.2.5",
|
|
42
|
+
"@girs/pango-1.0": "^1.51.0-3.2.5",
|
|
43
|
+
"@girs/pangocairo-1.0": "^1.0.0-3.2.5"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"typescript": "*"
|