@girs/girepository-3.0 3.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.
@@ -0,0 +1,10 @@
1
+
2
+
3
+ // @ts-expect-error
4
+ import GIRepository from 'gi://GIRepository?version=3.0';
5
+ export { GIRepository };
6
+ export default GIRepository;
7
+
8
+
9
+
10
+
package/package.json ADDED
@@ -0,0 +1,61 @@
1
+ {
2
+ "name": "@girs/girepository-3.0",
3
+ "version": "3.0.0-3.3.0",
4
+ "description": "GJS TypeScript type definitions for GIRepository-3.0, generated from library version 3.0.0",
5
+ "type": "module",
6
+ "module": "girepository-3.0.js",
7
+ "main": "girepository-3.0.js",
8
+ "exports": {
9
+ "./ambient": {
10
+ "types": "./girepository-3.0-ambient.d.ts",
11
+ "default": "./girepository-3.0-ambient.js"
12
+ },
13
+ "./import": {
14
+ "types": "./girepository-3.0-import.d.ts",
15
+ "default": "./girepository-3.0-import.js"
16
+ },
17
+ ".": {
18
+ "import": {
19
+ "types": "./girepository-3.0.d.ts",
20
+ "default": "./girepository-3.0.js"
21
+ },
22
+ "require": {
23
+ "types": "./girepository-3.0.d.cts",
24
+ "default": "./girepository-3.0.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 girepository-3.0.d.ts",
31
+ "test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit girepository-3.0.d.cts"
32
+ },
33
+ "dependencies": {
34
+ "@girs/gio-2.0": "^2.78.0-3.3.0",
35
+ "@girs/gjs": "^3.3.0",
36
+ "@girs/glib-2.0": "^2.78.0-3.3.0",
37
+ "@girs/gmodule-2.0": "^2.0.0-3.3.0",
38
+ "@girs/gobject-2.0": "^2.78.0-3.3.0"
39
+ },
40
+ "devDependencies": {
41
+ "typescript": "*"
42
+ },
43
+ "keywords": [
44
+ "Gir",
45
+ "TypeScript",
46
+ "types",
47
+ "GObject-Introspection",
48
+ "GJS",
49
+ "GIRepository-3.0"
50
+ ],
51
+ "author": "ts-for-gir",
52
+ "license": "MIT",
53
+ "repository": {
54
+ "type": "git",
55
+ "url": "git+https://github.com/gjsify/ts-for-gir.git"
56
+ },
57
+ "bugs": {
58
+ "url": "https://github.com/gjsify/ts-for-gir/issues"
59
+ },
60
+ "homepage": "https://github.com/gjsify/types/tree/main/girepository-3.0#readme"
61
+ }
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": ["./girepository-3.0.d.ts"]
21
+ }
22
+
23
+
package/typedoc.json ADDED
@@ -0,0 +1,7 @@
1
+ {
2
+ "entryPoints": ["./girepository-3.0.d.ts"],
3
+ "readme": "./README.md",
4
+ "name": "GIRepository-3.0",
5
+ "tsconfig": "./tsconfig.json"
6
+ }
7
+