@girs/cally-14 14.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.
package/cally-14.js ADDED
@@ -0,0 +1,10 @@
1
+
2
+
3
+ // @ts-expect-error
4
+ import Cally from 'gi://Cally?version=14';
5
+ export { Cally };
6
+ export default Cally;
7
+
8
+
9
+
10
+
package/package.json ADDED
@@ -0,0 +1,73 @@
1
+ {
2
+ "name": "@girs/cally-14",
3
+ "version": "14.0.0-3.3.0",
4
+ "description": "GJS TypeScript type definitions for Cally-14, generated from library version 14.0.0",
5
+ "type": "module",
6
+ "module": "cally-14.js",
7
+ "main": "cally-14.js",
8
+ "exports": {
9
+ "./ambient": {
10
+ "types": "./cally-14-ambient.d.ts",
11
+ "default": "./cally-14-ambient.js"
12
+ },
13
+ "./import": {
14
+ "types": "./cally-14-import.d.ts",
15
+ "default": "./cally-14-import.js"
16
+ },
17
+ ".": {
18
+ "import": {
19
+ "types": "./cally-14.d.ts",
20
+ "default": "./cally-14.js"
21
+ },
22
+ "require": {
23
+ "types": "./cally-14.d.cts",
24
+ "default": "./cally-14.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 cally-14.d.ts",
31
+ "test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit cally-14.d.cts"
32
+ },
33
+ "dependencies": {
34
+ "@girs/atk-1.0": "^2.50.1-3.3.0",
35
+ "@girs/cairo-1.0": "^1.0.0-3.3.0",
36
+ "@girs/clutter-14": "^14.0.0-3.3.0",
37
+ "@girs/cogl-14": "^14.0.0-3.3.0",
38
+ "@girs/coglpango-14": "^14.0.0-3.3.0",
39
+ "@girs/freetype2-2.0": "^2.0.0-3.3.0",
40
+ "@girs/gio-2.0": "^2.78.0-3.3.0",
41
+ "@girs/gjs": "^3.3.0",
42
+ "@girs/gl-1.0": "^1.0.0-3.3.0",
43
+ "@girs/glib-2.0": "^2.78.0-3.3.0",
44
+ "@girs/gobject-2.0": "^2.78.0-3.3.0",
45
+ "@girs/graphene-1.0": "^1.0.0-3.3.0",
46
+ "@girs/harfbuzz-0.0": "^8.2.1-3.3.0",
47
+ "@girs/mtk-14": "^14.0.0-3.3.0",
48
+ "@girs/pango-1.0": "^1.51.0-3.3.0",
49
+ "@girs/pangocairo-1.0": "^1.0.0-3.3.0",
50
+ "@girs/xlib-2.0": "^2.0.0-3.3.0"
51
+ },
52
+ "devDependencies": {
53
+ "typescript": "*"
54
+ },
55
+ "keywords": [
56
+ "Gir",
57
+ "TypeScript",
58
+ "types",
59
+ "GObject-Introspection",
60
+ "GJS",
61
+ "Cally-14"
62
+ ],
63
+ "author": "ts-for-gir",
64
+ "license": "MIT",
65
+ "repository": {
66
+ "type": "git",
67
+ "url": "git+https://github.com/gjsify/ts-for-gir.git"
68
+ },
69
+ "bugs": {
70
+ "url": "https://github.com/gjsify/ts-for-gir/issues"
71
+ },
72
+ "homepage": "https://github.com/gjsify/types/tree/main/cally-14#readme"
73
+ }
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": ["./cally-14.d.ts"]
21
+ }
22
+
23
+
package/typedoc.json ADDED
@@ -0,0 +1,7 @@
1
+ {
2
+ "entryPoints": ["./cally-14.d.ts"],
3
+ "readme": "./README.md",
4
+ "name": "Cally-14",
5
+ "tsconfig": "./tsconfig.json"
6
+ }
7
+