@girs/dex-1 1.0.0-3.2.2

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