@girs/gdl-3 3.0.0-3.0.0-beta.12

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/gdl-3.js ADDED
@@ -0,0 +1,8 @@
1
+
2
+
3
+ // @ts-expect-error
4
+ import Gdl from 'gi://Gdl?version=3';
5
+ export { Gdl };
6
+ export default Gdl;
7
+
8
+
package/package.json ADDED
@@ -0,0 +1,64 @@
1
+ {
2
+ "name": "@girs/gdl-3",
3
+ "version": "3.0.0-3.0.0-beta.12",
4
+ "description": "GJS TypeScript type definitions for Gdl-3, generated from library version 3.0.0",
5
+ "type": "module",
6
+ "module": "gdl-3.js",
7
+ "main": "gdl-3.js",
8
+ "typedoc": {
9
+ "entryPoint": "./gdl-3.d.ts",
10
+ "readmeFile": "./README.md",
11
+ "displayName": "Gdl-3",
12
+ "tsconfig": "./tsconfig.doc.json"
13
+ },
14
+ "exports": {
15
+ ".": {
16
+ "import": {
17
+ "types": "./gdl-3.d.ts",
18
+ "default": "./gdl-3.js"
19
+ },
20
+ "require": {
21
+ "types": "./gdl-3.d.cts",
22
+ "default": "./gdl-3.cjs"
23
+ }
24
+ }
25
+ },
26
+ "scripts": {
27
+ "test": "yarn test:esm && yarn test:cjs",
28
+ "test:esm": "tsc --noEmit gdl-3.d.ts",
29
+ "test:cjs": "tsc --noEmit gdl-3.d.cts"
30
+ },
31
+ "dependencies": {
32
+ "@girs/atk-1.0": "^2.45.1-3.0.0-beta.12",
33
+ "@girs/cairo-1.0": "^1.0.0-3.0.0-beta.12",
34
+ "@girs/freetype2-2.0": "^2.0.0-3.0.0-beta.12",
35
+ "@girs/gdk-3.0": "^3.24.36-3.0.0-beta.12",
36
+ "@girs/gdkpixbuf-2.0": "^2.0.0-3.0.0-beta.12",
37
+ "@girs/gio-2.0": "^2.75.1-3.0.0-beta.12",
38
+ "@girs/glib-2.0": "^2.75.1-3.0.0-beta.12",
39
+ "@girs/gmodule-2.0": "^2.0.0-3.0.0-beta.12",
40
+ "@girs/gobject-2.0": "^2.75.1-3.0.0-beta.12",
41
+ "@girs/gtk-3.0": "^3.24.36-3.0.0-beta.12",
42
+ "@girs/harfbuzz-0.0": "^6.0.0-3.0.0-beta.12",
43
+ "@girs/pango-1.0": "^1.50.13-3.0.0-beta.12",
44
+ "@girs/xlib-2.0": "^2.0.0-3.0.0-beta.12"
45
+ },
46
+ "devDependencies": {
47
+ "typescript": "^*"
48
+ },
49
+ "keywords": [
50
+ "Gir",
51
+ "TypeScript",
52
+ "Gdl-3"
53
+ ],
54
+ "author": "ts-for-gir",
55
+ "license": "Apache-2.0",
56
+ "repository": {
57
+ "type": "git",
58
+ "url": "git+https://github.com/gjsify/ts-for-gir.git"
59
+ },
60
+ "bugs": {
61
+ "url": "https://github.com/gjsify/ts-for-gir/issues"
62
+ },
63
+ "homepage": "https://github.com/gjsify/ts-for-gir#readme"
64
+ }
@@ -0,0 +1,19 @@
1
+ {
2
+ "compilerOptions": {
3
+ // General settings for code interpretation
4
+ "target": "ESNext",
5
+ "module": "ESNext",
6
+ "experimentalDecorators": true,
7
+ "moduleResolution": "node",
8
+ "noEmit": true,
9
+ "noEmitOnError": false,
10
+ "baseUrl": "./",
11
+ "rootDir": ".",
12
+ // General settings for code generation
13
+ "removeComments": false,
14
+ "inlineSourceMap": false,
15
+ "inlineSources": false,
16
+ "newLine": "LF"
17
+ },
18
+ "include": ["./gdl-3.d.ts"]
19
+ }