@girs/mx-1.0 1.4.7-4.0.0-beta.2 → 1.4.7-4.0.0-beta.3

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.
Files changed (3) hide show
  1. package/README.md +1 -19
  2. package/mx-1.0.d.ts +38 -39
  3. package/package.json +19 -20
package/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  ![downloads/week](https://img.shields.io/npm/dw/@girs/mx-1.0)
6
6
 
7
7
 
8
- GJS TypeScript type definitions for Mx-1.0, generated from library version 1.4.7 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.0.0-beta.2.
8
+ GJS TypeScript type definitions for Mx-1.0, generated from library version 1.4.7 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.0.0-beta.3.
9
9
 
10
10
 
11
11
  ## Install
@@ -22,11 +22,6 @@ You can import this package into your project like this:
22
22
  import Mx from '@girs/mx-1.0';
23
23
  ```
24
24
 
25
- Or if you prefer CommonJS, you can also use this:
26
- ```ts
27
- const Mx = require('@girs/mx-1.0');
28
- ```
29
-
30
25
  ### Ambient Modules
31
26
 
32
27
  You can also use [ambient modules](https://github.com/gjsify/ts-for-gir/tree/main/packages/cli#ambient-modules) to import this module like you would do this in JavaScript.
@@ -81,19 +76,6 @@ Now you have also type support for this, too:
81
76
  const Mx = imports.gi.Mx;
82
77
  ```
83
78
 
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
-
97
79
  ### Bundle
98
80
 
99
81
  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/mx-1.0.d.ts CHANGED
@@ -23,7 +23,6 @@ import type PangoFc from '@girs/pangofc-1.0';
23
23
  import type Pango from '@girs/pango-1.0';
24
24
  import type HarfBuzz from '@girs/harfbuzz-0.0';
25
25
  import type Gio from '@girs/gio-2.0';
26
- import type GModule from '@girs/gmodule-2.0';
27
26
  import type PangoCairo from '@girs/pangocairo-1.0';
28
27
  import type Json from '@girs/json-1.0';
29
28
  import type GL from '@girs/gl-1.0';
@@ -860,7 +859,7 @@ export namespace Mx {
860
859
  * static void
861
860
  * my_object_class_init (MyObjectClass *klass)
862
861
  * {
863
- * properties[PROP_FOO] = g_param_spec_int ("foo", NULL, NULL,
862
+ * properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo",
864
863
  * 0, 100,
865
864
  * 50,
866
865
  * G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
@@ -2116,7 +2115,7 @@ export namespace Mx {
2116
2115
  * static void
2117
2116
  * my_object_class_init (MyObjectClass *klass)
2118
2117
  * {
2119
- * properties[PROP_FOO] = g_param_spec_int ("foo", NULL, NULL,
2118
+ * properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo",
2120
2119
  * 0, 100,
2121
2120
  * 50,
2122
2121
  * G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
@@ -2842,7 +2841,7 @@ export namespace Mx {
2842
2841
  * static void
2843
2842
  * my_object_class_init (MyObjectClass *klass)
2844
2843
  * {
2845
- * properties[PROP_FOO] = g_param_spec_int ("foo", NULL, NULL,
2844
+ * properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo",
2846
2845
  * 0, 100,
2847
2846
  * 50,
2848
2847
  * G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
@@ -3480,7 +3479,7 @@ export namespace Mx {
3480
3479
  * static void
3481
3480
  * my_object_class_init (MyObjectClass *klass)
3482
3481
  * {
3483
- * properties[PROP_FOO] = g_param_spec_int ("foo", NULL, NULL,
3482
+ * properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo",
3484
3483
  * 0, 100,
3485
3484
  * 50,
3486
3485
  * G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
@@ -4252,7 +4251,7 @@ export namespace Mx {
4252
4251
  * static void
4253
4252
  * my_object_class_init (MyObjectClass *klass)
4254
4253
  * {
4255
- * properties[PROP_FOO] = g_param_spec_int ("foo", NULL, NULL,
4254
+ * properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo",
4256
4255
  * 0, 100,
4257
4256
  * 50,
4258
4257
  * G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
@@ -4662,7 +4661,7 @@ export namespace Mx {
4662
4661
  * static void
4663
4662
  * my_object_class_init (MyObjectClass *klass)
4664
4663
  * {
4665
- * properties[PROP_FOO] = g_param_spec_int ("foo", NULL, NULL,
4664
+ * properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo",
4666
4665
  * 0, 100,
4667
4666
  * 50,
4668
4667
  * G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
@@ -5074,7 +5073,7 @@ export namespace Mx {
5074
5073
  * static void
5075
5074
  * my_object_class_init (MyObjectClass *klass)
5076
5075
  * {
5077
- * properties[PROP_FOO] = g_param_spec_int ("foo", NULL, NULL,
5076
+ * properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo",
5078
5077
  * 0, 100,
5079
5078
  * 50,
5080
5079
  * G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
@@ -5668,7 +5667,7 @@ export namespace Mx {
5668
5667
  * static void
5669
5668
  * my_object_class_init (MyObjectClass *klass)
5670
5669
  * {
5671
- * properties[PROP_FOO] = g_param_spec_int ("foo", NULL, NULL,
5670
+ * properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo",
5672
5671
  * 0, 100,
5673
5672
  * 50,
5674
5673
  * G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
@@ -6085,7 +6084,7 @@ export namespace Mx {
6085
6084
  * static void
6086
6085
  * my_object_class_init (MyObjectClass *klass)
6087
6086
  * {
6088
- * properties[PROP_FOO] = g_param_spec_int ("foo", NULL, NULL,
6087
+ * properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo",
6089
6088
  * 0, 100,
6090
6089
  * 50,
6091
6090
  * G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
@@ -6530,7 +6529,7 @@ export namespace Mx {
6530
6529
  * static void
6531
6530
  * my_object_class_init (MyObjectClass *klass)
6532
6531
  * {
6533
- * properties[PROP_FOO] = g_param_spec_int ("foo", NULL, NULL,
6532
+ * properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo",
6534
6533
  * 0, 100,
6535
6534
  * 50,
6536
6535
  * G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
@@ -7232,7 +7231,7 @@ export namespace Mx {
7232
7231
  * static void
7233
7232
  * my_object_class_init (MyObjectClass *klass)
7234
7233
  * {
7235
- * properties[PROP_FOO] = g_param_spec_int ("foo", NULL, NULL,
7234
+ * properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo",
7236
7235
  * 0, 100,
7237
7236
  * 50,
7238
7237
  * G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
@@ -7695,7 +7694,7 @@ export namespace Mx {
7695
7694
  * static void
7696
7695
  * my_object_class_init (MyObjectClass *klass)
7697
7696
  * {
7698
- * properties[PROP_FOO] = g_param_spec_int ("foo", NULL, NULL,
7697
+ * properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo",
7699
7698
  * 0, 100,
7700
7699
  * 50,
7701
7700
  * G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
@@ -8358,7 +8357,7 @@ export namespace Mx {
8358
8357
  * static void
8359
8358
  * my_object_class_init (MyObjectClass *klass)
8360
8359
  * {
8361
- * properties[PROP_FOO] = g_param_spec_int ("foo", NULL, NULL,
8360
+ * properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo",
8362
8361
  * 0, 100,
8363
8362
  * 50,
8364
8363
  * G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
@@ -8846,7 +8845,7 @@ export namespace Mx {
8846
8845
  * static void
8847
8846
  * my_object_class_init (MyObjectClass *klass)
8848
8847
  * {
8849
- * properties[PROP_FOO] = g_param_spec_int ("foo", NULL, NULL,
8848
+ * properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo",
8850
8849
  * 0, 100,
8851
8850
  * 50,
8852
8851
  * G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
@@ -9515,7 +9514,7 @@ export namespace Mx {
9515
9514
  * static void
9516
9515
  * my_object_class_init (MyObjectClass *klass)
9517
9516
  * {
9518
- * properties[PROP_FOO] = g_param_spec_int ("foo", NULL, NULL,
9517
+ * properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo",
9519
9518
  * 0, 100,
9520
9519
  * 50,
9521
9520
  * G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
@@ -10078,7 +10077,7 @@ export namespace Mx {
10078
10077
  * static void
10079
10078
  * my_object_class_init (MyObjectClass *klass)
10080
10079
  * {
10081
- * properties[PROP_FOO] = g_param_spec_int ("foo", NULL, NULL,
10080
+ * properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo",
10082
10081
  * 0, 100,
10083
10082
  * 50,
10084
10083
  * G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
@@ -10944,7 +10943,7 @@ export namespace Mx {
10944
10943
  * static void
10945
10944
  * my_object_class_init (MyObjectClass *klass)
10946
10945
  * {
10947
- * properties[PROP_FOO] = g_param_spec_int ("foo", NULL, NULL,
10946
+ * properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo",
10948
10947
  * 0, 100,
10949
10948
  * 50,
10950
10949
  * G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
@@ -11456,7 +11455,7 @@ export namespace Mx {
11456
11455
  * static void
11457
11456
  * my_object_class_init (MyObjectClass *klass)
11458
11457
  * {
11459
- * properties[PROP_FOO] = g_param_spec_int ("foo", NULL, NULL,
11458
+ * properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo",
11460
11459
  * 0, 100,
11461
11460
  * 50,
11462
11461
  * G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
@@ -12063,7 +12062,7 @@ export namespace Mx {
12063
12062
  * static void
12064
12063
  * my_object_class_init (MyObjectClass *klass)
12065
12064
  * {
12066
- * properties[PROP_FOO] = g_param_spec_int ("foo", NULL, NULL,
12065
+ * properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo",
12067
12066
  * 0, 100,
12068
12067
  * 50,
12069
12068
  * G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
@@ -12751,7 +12750,7 @@ export namespace Mx {
12751
12750
  * static void
12752
12751
  * my_object_class_init (MyObjectClass *klass)
12753
12752
  * {
12754
- * properties[PROP_FOO] = g_param_spec_int ("foo", NULL, NULL,
12753
+ * properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo",
12755
12754
  * 0, 100,
12756
12755
  * 50,
12757
12756
  * G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
@@ -13263,7 +13262,7 @@ export namespace Mx {
13263
13262
  * static void
13264
13263
  * my_object_class_init (MyObjectClass *klass)
13265
13264
  * {
13266
- * properties[PROP_FOO] = g_param_spec_int ("foo", NULL, NULL,
13265
+ * properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo",
13267
13266
  * 0, 100,
13268
13267
  * 50,
13269
13268
  * G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
@@ -13724,7 +13723,7 @@ export namespace Mx {
13724
13723
  * static void
13725
13724
  * my_object_class_init (MyObjectClass *klass)
13726
13725
  * {
13727
- * properties[PROP_FOO] = g_param_spec_int ("foo", NULL, NULL,
13726
+ * properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo",
13728
13727
  * 0, 100,
13729
13728
  * 50,
13730
13729
  * G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
@@ -14316,7 +14315,7 @@ export namespace Mx {
14316
14315
  * static void
14317
14316
  * my_object_class_init (MyObjectClass *klass)
14318
14317
  * {
14319
- * properties[PROP_FOO] = g_param_spec_int ("foo", NULL, NULL,
14318
+ * properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo",
14320
14319
  * 0, 100,
14321
14320
  * 50,
14322
14321
  * G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
@@ -14851,7 +14850,7 @@ export namespace Mx {
14851
14850
  * static void
14852
14851
  * my_object_class_init (MyObjectClass *klass)
14853
14852
  * {
14854
- * properties[PROP_FOO] = g_param_spec_int ("foo", NULL, NULL,
14853
+ * properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo",
14855
14854
  * 0, 100,
14856
14855
  * 50,
14857
14856
  * G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
@@ -15481,7 +15480,7 @@ export namespace Mx {
15481
15480
  * static void
15482
15481
  * my_object_class_init (MyObjectClass *klass)
15483
15482
  * {
15484
- * properties[PROP_FOO] = g_param_spec_int ("foo", NULL, NULL,
15483
+ * properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo",
15485
15484
  * 0, 100,
15486
15485
  * 50,
15487
15486
  * G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
@@ -16041,7 +16040,7 @@ export namespace Mx {
16041
16040
  * static void
16042
16041
  * my_object_class_init (MyObjectClass *klass)
16043
16042
  * {
16044
- * properties[PROP_FOO] = g_param_spec_int ("foo", NULL, NULL,
16043
+ * properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo",
16045
16044
  * 0, 100,
16046
16045
  * 50,
16047
16046
  * G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
@@ -16507,7 +16506,7 @@ export namespace Mx {
16507
16506
  * static void
16508
16507
  * my_object_class_init (MyObjectClass *klass)
16509
16508
  * {
16510
- * properties[PROP_FOO] = g_param_spec_int ("foo", NULL, NULL,
16509
+ * properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo",
16511
16510
  * 0, 100,
16512
16511
  * 50,
16513
16512
  * G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
@@ -16959,7 +16958,7 @@ export namespace Mx {
16959
16958
  * static void
16960
16959
  * my_object_class_init (MyObjectClass *klass)
16961
16960
  * {
16962
- * properties[PROP_FOO] = g_param_spec_int ("foo", NULL, NULL,
16961
+ * properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo",
16963
16962
  * 0, 100,
16964
16963
  * 50,
16965
16964
  * G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
@@ -17617,7 +17616,7 @@ export namespace Mx {
17617
17616
  * static void
17618
17617
  * my_object_class_init (MyObjectClass *klass)
17619
17618
  * {
17620
- * properties[PROP_FOO] = g_param_spec_int ("foo", NULL, NULL,
17619
+ * properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo",
17621
17620
  * 0, 100,
17622
17621
  * 50,
17623
17622
  * G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
@@ -18197,7 +18196,7 @@ export namespace Mx {
18197
18196
  * static void
18198
18197
  * my_object_class_init (MyObjectClass *klass)
18199
18198
  * {
18200
- * properties[PROP_FOO] = g_param_spec_int ("foo", NULL, NULL,
18199
+ * properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo",
18201
18200
  * 0, 100,
18202
18201
  * 50,
18203
18202
  * G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
@@ -18837,7 +18836,7 @@ export namespace Mx {
18837
18836
  * static void
18838
18837
  * my_object_class_init (MyObjectClass *klass)
18839
18838
  * {
18840
- * properties[PROP_FOO] = g_param_spec_int ("foo", NULL, NULL,
18839
+ * properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo",
18841
18840
  * 0, 100,
18842
18841
  * 50,
18843
18842
  * G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
@@ -19718,7 +19717,7 @@ export namespace Mx {
19718
19717
  * static void
19719
19718
  * my_object_class_init (MyObjectClass *klass)
19720
19719
  * {
19721
- * properties[PROP_FOO] = g_param_spec_int ("foo", NULL, NULL,
19720
+ * properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo",
19722
19721
  * 0, 100,
19723
19722
  * 50,
19724
19723
  * G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
@@ -20809,7 +20808,7 @@ export namespace Mx {
20809
20808
  * static void
20810
20809
  * my_object_class_init (MyObjectClass *klass)
20811
20810
  * {
20812
- * properties[PROP_FOO] = g_param_spec_int ("foo", NULL, NULL,
20811
+ * properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo",
20813
20812
  * 0, 100,
20814
20813
  * 50,
20815
20814
  * G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
@@ -21361,7 +21360,7 @@ export namespace Mx {
21361
21360
  * static void
21362
21361
  * my_object_class_init (MyObjectClass *klass)
21363
21362
  * {
21364
- * properties[PROP_FOO] = g_param_spec_int ("foo", NULL, NULL,
21363
+ * properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo",
21365
21364
  * 0, 100,
21366
21365
  * 50,
21367
21366
  * G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
@@ -21818,7 +21817,7 @@ export namespace Mx {
21818
21817
  * static void
21819
21818
  * my_object_class_init (MyObjectClass *klass)
21820
21819
  * {
21821
- * properties[PROP_FOO] = g_param_spec_int ("foo", NULL, NULL,
21820
+ * properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo",
21822
21821
  * 0, 100,
21823
21822
  * 50,
21824
21823
  * G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
@@ -22267,7 +22266,7 @@ export namespace Mx {
22267
22266
  * static void
22268
22267
  * my_object_class_init (MyObjectClass *klass)
22269
22268
  * {
22270
- * properties[PROP_FOO] = g_param_spec_int ("foo", NULL, NULL,
22269
+ * properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo",
22271
22270
  * 0, 100,
22272
22271
  * 50,
22273
22272
  * G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
@@ -22747,7 +22746,7 @@ export namespace Mx {
22747
22746
  * static void
22748
22747
  * my_object_class_init (MyObjectClass *klass)
22749
22748
  * {
22750
- * properties[PROP_FOO] = g_param_spec_int ("foo", NULL, NULL,
22749
+ * properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo",
22751
22750
  * 0, 100,
22752
22751
  * 50,
22753
22752
  * G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
@@ -23889,7 +23888,7 @@ export namespace Mx {
23889
23888
  * static void
23890
23889
  * my_object_class_init (MyObjectClass *klass)
23891
23890
  * {
23892
- * properties[PROP_FOO] = g_param_spec_int ("foo", NULL, NULL,
23891
+ * properties[PROP_FOO] = g_param_spec_int ("foo", "Foo", "The foo",
23893
23892
  * 0, 100,
23894
23893
  * 50,
23895
23894
  * G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@girs/mx-1.0",
3
- "version": "1.4.7-4.0.0-beta.2",
3
+ "version": "1.4.7-4.0.0-beta.3",
4
4
  "description": "GJS TypeScript type definitions for Mx-1.0, generated from library version 1.4.7",
5
5
  "type": "module",
6
6
  "module": "mx-1.0.js",
@@ -26,25 +26,24 @@
26
26
  "test": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit mx-1.0.d.ts"
27
27
  },
28
28
  "dependencies": {
29
- "@girs/atk-1.0": "^2.52.0-4.0.0-beta.2",
30
- "@girs/cairo-1.0": "^1.0.0-4.0.0-beta.2",
31
- "@girs/clutter-1.0": "^1.26.5-4.0.0-beta.2",
32
- "@girs/cogl-1.0": "^1.0.0-4.0.0-beta.2",
33
- "@girs/coglpango-1.0": "^1.0.0-4.0.0-beta.2",
34
- "@girs/fontconfig-2.0": "^2.0.0-4.0.0-beta.2",
35
- "@girs/freetype2-2.0": "^2.0.0-4.0.0-beta.2",
36
- "@girs/gio-2.0": "^2.80.0-4.0.0-beta.2",
37
- "@girs/gjs": "^4.0.0-beta.2",
38
- "@girs/gl-1.0": "^1.0.0-4.0.0-beta.2",
39
- "@girs/glib-2.0": "^2.80.0-4.0.0-beta.2",
40
- "@girs/gmodule-2.0": "^2.0.0-4.0.0-beta.2",
41
- "@girs/gobject-2.0": "^2.80.0-4.0.0-beta.2",
42
- "@girs/harfbuzz-0.0": "^8.3.1-4.0.0-beta.2",
43
- "@girs/json-1.0": "^1.7.1-4.0.0-beta.2",
44
- "@girs/pango-1.0": "^1.51.2-4.0.0-beta.2",
45
- "@girs/pangocairo-1.0": "^1.0.0-4.0.0-beta.2",
46
- "@girs/pangofc-1.0": "^1.0.0-4.0.0-beta.2",
47
- "@girs/pangoft2-1.0": "^1.0.0-4.0.0-beta.2"
29
+ "@girs/atk-1.0": "^2.52.0-4.0.0-beta.3",
30
+ "@girs/cairo-1.0": "^1.0.0-4.0.0-beta.3",
31
+ "@girs/clutter-1.0": "^1.26.5-4.0.0-beta.3",
32
+ "@girs/cogl-1.0": "^1.0.0-4.0.0-beta.3",
33
+ "@girs/coglpango-1.0": "^1.0.0-4.0.0-beta.3",
34
+ "@girs/fontconfig-2.0": "^2.0.0-4.0.0-beta.3",
35
+ "@girs/freetype2-2.0": "^2.0.0-4.0.0-beta.3",
36
+ "@girs/gio-2.0": "^2.80.0-4.0.0-beta.3",
37
+ "@girs/gjs": "^4.0.0-beta.3",
38
+ "@girs/gl-1.0": "^1.0.0-4.0.0-beta.3",
39
+ "@girs/glib-2.0": "^2.80.0-4.0.0-beta.3",
40
+ "@girs/gobject-2.0": "^2.80.0-4.0.0-beta.3",
41
+ "@girs/harfbuzz-0.0": "^8.3.1-4.0.0-beta.3",
42
+ "@girs/json-1.0": "^1.8.0-4.0.0-beta.3",
43
+ "@girs/pango-1.0": "^1.51.0-4.0.0-beta.3",
44
+ "@girs/pangocairo-1.0": "^1.0.0-4.0.0-beta.3",
45
+ "@girs/pangofc-1.0": "^1.0.0-4.0.0-beta.3",
46
+ "@girs/pangoft2-1.0": "^1.0.0-4.0.0-beta.3"
48
47
  },
49
48
  "devDependencies": {
50
49
  "typescript": "*"