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