@devscholar/node-with-gjs 0.0.4 → 0.0.5

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -7,7 +7,7 @@ This is a project that brings GNOME's GJS (GObject Introspection JavaScript runt
7
7
  # Requirements
8
8
 
9
9
  - Linux with GTK4 and WebKitGTK 6.0 installed
10
- - Node.js 22+ (or Deno/Bun)
10
+ - Node.js 18+ (LTS version recommended, or Deno/Bun)
11
11
  - bash (for Unix pipe IPC)
12
12
 
13
13
  ## Installation
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@devscholar/node-with-gjs",
3
- "version": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "description": "Node.js IPC Bridge for GJS",
5
5
  "main": "./dist/index.js",
6
6
  "type": "module",
7
7
  "license": "MIT",
8
8
  "engines": {
9
- "node": ">=22.22.0"
9
+ "node": ">=18.0.0"
10
10
  },
11
11
  "keywords": [
12
12
  "gjs",
@@ -24,7 +24,7 @@
24
24
  "bin": {},
25
25
  "scripts": {
26
26
  "build": "tsc",
27
- "test": "node --experimental-transform-types node_modules/vitest/vitest.mjs run",
27
+ "test": "vitest run",
28
28
  "start": "node start.js"
29
29
  },
30
30
  "devDependencies": {