@girs/cally-5 5.0.0-4.0.0-beta.38

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/cally-5.js ADDED
@@ -0,0 +1,5 @@
1
+
2
+ // @ts-expect-error
3
+ import Cally from 'gi://Cally?version=5';
4
+ export default Cally;
5
+
package/index.d.ts ADDED
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Type Definitions for Gjs (https://gjs.guide/)
3
+ *
4
+ * These type definitions are automatically generated, do not edit them by hand.
5
+ * If you found a bug fix it in `ts-for-gir` or create a bug report on https://github.com/gjsify/ts-for-gir
6
+ *
7
+ * This template is used to generate the index.d.ts file of each GIR module like Gtk-4.0, GObject-2.0, ...
8
+ */
9
+
10
+ import './cally-5-ambient.d.ts';
11
+
12
+ import Cally from './cally-5.js';
13
+ export default Cally;
package/index.js ADDED
@@ -0,0 +1,5 @@
1
+
2
+ // @ts-expect-error
3
+ import Cally from './cally-5.js';
4
+ export default Cally;
5
+
package/package.json ADDED
@@ -0,0 +1,66 @@
1
+ {
2
+ "name": "@girs/cally-5",
3
+ "version": "5.0.0-4.0.0-beta.38",
4
+ "description": "GJS TypeScript type definitions for Cally-5, generated from library version 5.0.0",
5
+ "type": "module",
6
+ "module": "cally-5.js",
7
+ "main": "cally-5.js",
8
+ "exports": {
9
+ "./ambient": {
10
+ "types": "./cally-5-ambient.d.ts",
11
+ "import": "./cally-5-ambient.js",
12
+ "default": "./cally-5-ambient.js"
13
+ },
14
+ "./import": {
15
+ "types": "./cally-5-import.d.ts",
16
+ "import": "./cally-5-import.js",
17
+ "default": "./cally-5-import.js"
18
+ },
19
+ "./cally-5": {
20
+ "types": "./cally-5.d.ts",
21
+ "import": "./cally-5.js",
22
+ "default": "./cally-5.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.38",
35
+ "@girs/coglpango-5": "5.0.0-4.0.0-beta.38",
36
+ "@girs/pangocairo-1.0": "1.0.0-4.0.0-beta.38",
37
+ "@girs/cairo-1.0": "1.0.0-4.0.0-beta.38",
38
+ "@girs/gobject-2.0": "2.86.0-4.0.0-beta.38",
39
+ "@girs/glib-2.0": "2.86.0-4.0.0-beta.38",
40
+ "@girs/pango-1.0": "1.57.0-4.0.0-beta.38",
41
+ "@girs/harfbuzz-0.0": "11.5.0-4.0.0-beta.38",
42
+ "@girs/freetype2-2.0": "2.0.0-4.0.0-beta.38",
43
+ "@girs/gio-2.0": "2.86.0-4.0.0-beta.38",
44
+ "@girs/gmodule-2.0": "2.0.0-4.0.0-beta.38",
45
+ "@girs/cogl-5": "5.0.0-4.0.0-beta.38",
46
+ "@girs/gl-1.0": "1.0.0-4.0.0-beta.38",
47
+ "@girs/clutter-5": "5.0.0-4.0.0-beta.38",
48
+ "@girs/json-1.0": "1.10.8-4.0.0-beta.38",
49
+ "@girs/atk-1.0": "2.58.0-4.0.0-beta.38" },
50
+ "devDependencies": {
51
+ "typescript": "*"
52
+ },
53
+ "keywords": ["Gir", "TypeScript", "types", "GObject-Introspection", "GJS", "Cally-5"],
54
+ "author": "ts-for-gir",
55
+ "license": "MIT",
56
+ "repository": {
57
+ "type": "git",
58
+ "url": "git+https://github.com/gjsify/types.git"
59
+ },
60
+ "bugs": {
61
+ "url": "https://github.com/gjsify/ts-for-gir/issues"
62
+ },
63
+ "homepage": "https://github.com/gjsify/types/tree/main/cally-5#readme"
64
+ }
65
+
66
+
package/tsconfig.json ADDED
@@ -0,0 +1,25 @@
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
+ },
22
+ "include": ["./cally-5.d.ts"]
23
+ }
24
+
25
+
package/typedoc.json ADDED
@@ -0,0 +1,7 @@
1
+ {
2
+ "entryPoints": ["./cally-5.d.ts"],
3
+ "readme": "./README.md",
4
+ "name": "Cally-5",
5
+ "tsconfig": "./tsconfig.json"
6
+ }
7
+