@girs/clutter-14 14.0.0-3.3.0

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/clutter-14.js ADDED
@@ -0,0 +1,10 @@
1
+
2
+
3
+ // @ts-expect-error
4
+ import Clutter from 'gi://Clutter?version=14';
5
+ export { Clutter };
6
+ export default Clutter;
7
+
8
+
9
+
10
+
package/package.json ADDED
@@ -0,0 +1,72 @@
1
+ {
2
+ "name": "@girs/clutter-14",
3
+ "version": "14.0.0-3.3.0",
4
+ "description": "GJS TypeScript type definitions for Clutter-14, generated from library version 14.0.0",
5
+ "type": "module",
6
+ "module": "clutter-14.js",
7
+ "main": "clutter-14.js",
8
+ "exports": {
9
+ "./ambient": {
10
+ "types": "./clutter-14-ambient.d.ts",
11
+ "default": "./clutter-14-ambient.js"
12
+ },
13
+ "./import": {
14
+ "types": "./clutter-14-import.d.ts",
15
+ "default": "./clutter-14-import.js"
16
+ },
17
+ ".": {
18
+ "import": {
19
+ "types": "./clutter-14.d.ts",
20
+ "default": "./clutter-14.js"
21
+ },
22
+ "require": {
23
+ "types": "./clutter-14.d.cts",
24
+ "default": "./clutter-14.cjs"
25
+ }
26
+ }
27
+ },
28
+ "scripts": {
29
+ "test": "yarn test:esm && yarn test:cjs",
30
+ "test:esm": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit clutter-14.d.ts",
31
+ "test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit clutter-14.d.cts"
32
+ },
33
+ "dependencies": {
34
+ "@girs/atk-1.0": "^2.50.1-3.3.0",
35
+ "@girs/cairo-1.0": "^1.0.0-3.3.0",
36
+ "@girs/cogl-14": "^14.0.0-3.3.0",
37
+ "@girs/coglpango-14": "^14.0.0-3.3.0",
38
+ "@girs/freetype2-2.0": "^2.0.0-3.3.0",
39
+ "@girs/gio-2.0": "^2.78.0-3.3.0",
40
+ "@girs/gjs": "^3.3.0",
41
+ "@girs/gl-1.0": "^1.0.0-3.3.0",
42
+ "@girs/glib-2.0": "^2.78.0-3.3.0",
43
+ "@girs/gobject-2.0": "^2.78.0-3.3.0",
44
+ "@girs/graphene-1.0": "^1.0.0-3.3.0",
45
+ "@girs/harfbuzz-0.0": "^8.2.1-3.3.0",
46
+ "@girs/mtk-14": "^14.0.0-3.3.0",
47
+ "@girs/pango-1.0": "^1.51.0-3.3.0",
48
+ "@girs/pangocairo-1.0": "^1.0.0-3.3.0",
49
+ "@girs/xlib-2.0": "^2.0.0-3.3.0"
50
+ },
51
+ "devDependencies": {
52
+ "typescript": "*"
53
+ },
54
+ "keywords": [
55
+ "Gir",
56
+ "TypeScript",
57
+ "types",
58
+ "GObject-Introspection",
59
+ "GJS",
60
+ "Clutter-14"
61
+ ],
62
+ "author": "ts-for-gir",
63
+ "license": "MIT",
64
+ "repository": {
65
+ "type": "git",
66
+ "url": "git+https://github.com/gjsify/ts-for-gir.git"
67
+ },
68
+ "bugs": {
69
+ "url": "https://github.com/gjsify/ts-for-gir/issues"
70
+ },
71
+ "homepage": "https://github.com/gjsify/types/tree/main/clutter-14#readme"
72
+ }
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": ["./clutter-14.d.ts"]
21
+ }
22
+
23
+
package/typedoc.json ADDED
@@ -0,0 +1,7 @@
1
+ {
2
+ "entryPoints": ["./clutter-14.d.ts"],
3
+ "readme": "./README.md",
4
+ "name": "Clutter-14",
5
+ "tsconfig": "./tsconfig.json"
6
+ }
7
+