@girs/meta-13 13.0.0-3.2.4

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/meta-13.js ADDED
@@ -0,0 +1,10 @@
1
+
2
+
3
+ // @ts-expect-error
4
+ import Meta from 'gi://Meta?version=13';
5
+ export { Meta };
6
+ export default Meta;
7
+
8
+
9
+
10
+
package/package.json ADDED
@@ -0,0 +1,70 @@
1
+ {
2
+ "name": "@girs/meta-13",
3
+ "version": "13.0.0-3.2.4",
4
+ "description": "GJS TypeScript type definitions for Meta-13, generated from library version 13.0.0",
5
+ "type": "module",
6
+ "module": "meta-13.js",
7
+ "main": "meta-13.js",
8
+ "exports": {
9
+ "./ambient": "./meta-13-ambient.d.ts",
10
+ "./import": "./meta-13-import.d.ts",
11
+ ".": {
12
+ "import": {
13
+ "types": "./meta-13.d.ts",
14
+ "default": "./meta-13.js"
15
+ },
16
+ "require": {
17
+ "types": "./meta-13.d.cts",
18
+ "default": "./meta-13.cjs"
19
+ }
20
+ }
21
+ },
22
+ "scripts": {
23
+ "test": "yarn test:esm && yarn test:cjs",
24
+ "test:esm": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit meta-13.d.ts",
25
+ "test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit meta-13.d.cts"
26
+ },
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-13": "^13.0.0-3.2.4",
31
+ "@girs/cogl-13": "^13.0.0-3.2.4",
32
+ "@girs/coglpango-13": "^13.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/gio-2.0": "^2.78.0-3.2.4",
36
+ "@girs/gjs": "^3.2.4",
37
+ "@girs/gl-1.0": "^1.0.0-3.2.4",
38
+ "@girs/glib-2.0": "^2.78.0-3.2.4",
39
+ "@girs/gobject-2.0": "^2.78.0-3.2.4",
40
+ "@girs/graphene-1.0": "^1.0.0-3.2.4",
41
+ "@girs/harfbuzz-0.0": "^8.2.1-3.2.4",
42
+ "@girs/json-1.0": "^1.7.1-3.2.4",
43
+ "@girs/mtk-13": "^13.0.0-3.2.4",
44
+ "@girs/pango-1.0": "^1.51.0-3.2.4",
45
+ "@girs/pangocairo-1.0": "^1.0.0-3.2.4",
46
+ "@girs/xfixes-4.0": "^4.0.0-3.2.4",
47
+ "@girs/xlib-2.0": "^2.0.0-3.2.4"
48
+ },
49
+ "devDependencies": {
50
+ "typescript": "*"
51
+ },
52
+ "keywords": [
53
+ "Gir",
54
+ "TypeScript",
55
+ "types",
56
+ "GObject-Introspection",
57
+ "GJS",
58
+ "Meta-13"
59
+ ],
60
+ "author": "ts-for-gir",
61
+ "license": "MIT",
62
+ "repository": {
63
+ "type": "git",
64
+ "url": "git+https://github.com/gjsify/types.git"
65
+ },
66
+ "bugs": {
67
+ "url": "https://github.com/gjsify/ts-for-gir/issues"
68
+ },
69
+ "homepage": "https://github.com/gjsify/types/tree/main/meta-13#readme"
70
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "compilerOptions": {
3
+ // General settings for code interpretation
4
+ "target": "ESNext",
5
+ "module": "ESNext",
6
+ "lib": ["ESNext"],
7
+ "types": [],
8
+ "experimentalDecorators": true,
9
+ "moduleResolution": "node",
10
+ "noEmit": true,
11
+ "noEmitOnError": false,
12
+ "baseUrl": "./",
13
+ "rootDir": ".",
14
+ // General settings for code generation
15
+ "removeComments": false,
16
+ "inlineSourceMap": false,
17
+ "inlineSources": false,
18
+ "newLine": "LF"
19
+ },
20
+ "include": ["./meta-13.d.ts"]
21
+ }
22
+
23
+
package/typedoc.json ADDED
@@ -0,0 +1,7 @@
1
+ {
2
+ "entryPoints": ["./meta-13.d.ts"],
3
+ "readme": "./README.md",
4
+ "name": "Meta-13",
5
+ "tsconfig": "./tsconfig.json"
6
+ }
7
+