@girs/lasem-0.6 0.6.0-4.0.0-beta.41

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/lasem-0.6.js ADDED
@@ -0,0 +1,5 @@
1
+
2
+ // @ts-expect-error
3
+ import Lasem from 'gi://Lasem?version=0.6';
4
+ export default Lasem;
5
+
package/package.json ADDED
@@ -0,0 +1,57 @@
1
+ {
2
+ "name": "@girs/lasem-0.6",
3
+ "version": "0.6.0-4.0.0-beta.41",
4
+ "description": "GJS TypeScript type definitions for Lasem-0.6, generated from library version 0.6.0",
5
+ "type": "module",
6
+ "module": "lasem-0.6.js",
7
+ "main": "lasem-0.6.js",
8
+ "exports": {
9
+ "./ambient": {
10
+ "types": "./lasem-0.6-ambient.d.ts",
11
+ "import": "./lasem-0.6-ambient.js",
12
+ "default": "./lasem-0.6-ambient.js"
13
+ },
14
+ "./import": {
15
+ "types": "./lasem-0.6-import.d.ts",
16
+ "import": "./lasem-0.6-import.js",
17
+ "default": "./lasem-0.6-import.js"
18
+ },
19
+ "./lasem-0.6": {
20
+ "types": "./lasem-0.6.d.ts",
21
+ "import": "./lasem-0.6.js",
22
+ "default": "./lasem-0.6.js"
23
+ },
24
+ ".": {
25
+ "types": "./index.d.ts",
26
+ "import": "./index.js",
27
+ "default": "./index.js"
28
+ }
29
+ },
30
+ "scripts": {
31
+ "test": "tsc --project tsconfig.json"
32
+ },
33
+ "dependencies": {
34
+ "@girs/gjs": "4.0.0-beta.41",
35
+ "@girs/cairo-1.0": "1.0.0-4.0.0-beta.41",
36
+ "@girs/gobject-2.0": "2.88.0-4.0.0-beta.41",
37
+ "@girs/glib-2.0": "2.88.0-4.0.0-beta.41",
38
+ "@girs/gio-2.0": "2.88.0-4.0.0-beta.41",
39
+ "@girs/gmodule-2.0": "2.0.0-4.0.0-beta.41",
40
+ "@girs/gdkpixbuf-2.0": "2.0.0-4.0.0-beta.41" },
41
+ "devDependencies": {
42
+ "typescript": "*"
43
+ },
44
+ "keywords": ["Gir", "TypeScript", "types", "GObject-Introspection", "GJS", "Lasem-0.6"],
45
+ "author": "ts-for-gir",
46
+ "license": "MIT",
47
+ "repository": {
48
+ "type": "git",
49
+ "url": "git+https://github.com/gjsify/types.git"
50
+ },
51
+ "bugs": {
52
+ "url": "https://github.com/gjsify/ts-for-gir/issues"
53
+ },
54
+ "homepage": "https://github.com/gjsify/types/tree/main/lasem-0.6#readme"
55
+ }
56
+
57
+
package/tsconfig.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "compilerOptions": {
3
+ // General settings for code interpretation
4
+ "target": "ESNext",
5
+ "module": "NodeNext",
6
+ "lib": ["ESNext"],
7
+ "types": [],
8
+ "experimentalDecorators": true,
9
+ "moduleResolution": "NodeNext",
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
+ // Show diagnostics
20
+ "diagnostics": true,
21
+ "paths": {
22
+ "@girs/cairo-1.0": [
23
+ "../cairo-1.0/index.d.ts"
24
+ ],
25
+ "@girs/gobject-2.0": [
26
+ "../gobject-2.0/index.d.ts"
27
+ ],
28
+ "@girs/glib-2.0": [
29
+ "../glib-2.0/index.d.ts"
30
+ ],
31
+ "@girs/gio-2.0": [
32
+ "../gio-2.0/index.d.ts"
33
+ ],
34
+ "@girs/gmodule-2.0": [
35
+ "../gmodule-2.0/index.d.ts"
36
+ ],
37
+ "@girs/gdkpixbuf-2.0": [
38
+ "../gdkpixbuf-2.0/index.d.ts"
39
+ ],
40
+ "@girs/gjs": [
41
+ "../gjs/index.d.ts"
42
+ ]
43
+ }
44
+ },
45
+ "include": ["./lasem-0.6.d.ts"]
46
+ }
47
+
48
+
package/typedoc.json ADDED
@@ -0,0 +1,9 @@
1
+ {
2
+ "entryPoints": ["./lasem-0.6.d.ts"],
3
+ "readme": "./README.md",
4
+ "name": "Lasem-0.6",
5
+ "tsconfig": "./tsconfig.json",
6
+ "skipErrorChecking": true,
7
+ "highlightLanguages": ["typescript", "javascript", "c", "cpp", "xml", "bash", "json", "css"]
8
+ }
9
+