@gjsify/node-gi 0.13.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/package.json ADDED
@@ -0,0 +1,63 @@
1
+ {
2
+ "name": "@gjsify/node-gi",
3
+ "version": "0.13.0",
4
+ "description": "GObject-Introspection runtime for Node.js — load gi:// namespaces (GLib/GObject/Gio/…) with GJS-compatible semantics. Vendored + rewritten from node-gtk under MIT.",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "gypfile": true,
8
+ "main": "./index.js",
9
+ "types": "./index.d.ts",
10
+ "exports": {
11
+ ".": {
12
+ "types": "./index.d.ts",
13
+ "default": "./index.js"
14
+ },
15
+ "./gi": {
16
+ "types": "./gi.d.ts",
17
+ "default": "./gi.js"
18
+ },
19
+ "./globals": {
20
+ "types": "./globals.d.ts",
21
+ "default": "./globals.js"
22
+ }
23
+ },
24
+ "files": [
25
+ "index.js",
26
+ "index.d.ts",
27
+ "gi.js",
28
+ "gi.d.ts",
29
+ "globals.js",
30
+ "globals.d.ts",
31
+ "src",
32
+ "binding.gyp",
33
+ "prebuilds"
34
+ ],
35
+ "gjsify": {
36
+ "runtimes": {
37
+ "gjs": "none",
38
+ "node": "polyfill",
39
+ "browser": "none",
40
+ "nativescript": "none"
41
+ }
42
+ },
43
+ "scripts": {
44
+ "install": "node-gyp rebuild",
45
+ "build": "node-gyp rebuild",
46
+ "build:native": "node-gyp rebuild",
47
+ "rebuild": "node-gyp rebuild",
48
+ "clean": "node-gyp clean",
49
+ "test": "node --test",
50
+ "test:node": "node --test"
51
+ },
52
+ "dependencies": {
53
+ "node-addon-api": "^8.0.0"
54
+ },
55
+ "engines": {
56
+ "node": ">=20"
57
+ },
58
+ "repository": {
59
+ "type": "git",
60
+ "url": "git+https://github.com/gjsify/gjsify.git",
61
+ "directory": "packages/node-gi/node-gi"
62
+ }
63
+ }