@girs/appstream-1.0 0.16.1-3.2.4

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 AppStream from 'gi://AppStream?version=1.0';
5
+ export { AppStream };
6
+ export default AppStream;
7
+
8
+
9
+
10
+
package/package.json ADDED
@@ -0,0 +1,54 @@
1
+ {
2
+ "name": "@girs/appstream-1.0",
3
+ "version": "0.16.1-3.2.4",
4
+ "description": "GJS TypeScript type definitions for AppStream-1.0, generated from library version 0.16.1",
5
+ "type": "module",
6
+ "module": "appstream-1.0.js",
7
+ "main": "appstream-1.0.js",
8
+ "exports": {
9
+ "./ambient": "./appstream-1.0-ambient.d.ts",
10
+ "./import": "./appstream-1.0-import.d.ts",
11
+ ".": {
12
+ "import": {
13
+ "types": "./appstream-1.0.d.ts",
14
+ "default": "./appstream-1.0.js"
15
+ },
16
+ "require": {
17
+ "types": "./appstream-1.0.d.cts",
18
+ "default": "./appstream-1.0.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 appstream-1.0.d.ts",
25
+ "test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit appstream-1.0.d.cts"
26
+ },
27
+ "dependencies": {
28
+ "@girs/gio-2.0": "^2.78.0-3.2.4",
29
+ "@girs/gjs": "^3.2.4",
30
+ "@girs/glib-2.0": "^2.78.0-3.2.4",
31
+ "@girs/gobject-2.0": "^2.78.0-3.2.4"
32
+ },
33
+ "devDependencies": {
34
+ "typescript": "*"
35
+ },
36
+ "keywords": [
37
+ "Gir",
38
+ "TypeScript",
39
+ "types",
40
+ "GObject-Introspection",
41
+ "GJS",
42
+ "AppStream-1.0"
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/appstream-1.0#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": ["./appstream-1.0.d.ts"]
21
+ }
22
+
23
+
package/typedoc.json ADDED
@@ -0,0 +1,7 @@
1
+ {
2
+ "entryPoints": ["./appstream-1.0.d.ts"],
3
+ "readme": "./README.md",
4
+ "name": "AppStream-1.0",
5
+ "tsconfig": "./tsconfig.json"
6
+ }
7
+