@girs/gpaste-2 2.0.0-4.0.0-beta.3

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