@gjsify/create-app 0.1.13 → 0.2.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.
@@ -11,17 +11,17 @@
11
11
  "dev": "gjsify build src/index.ts --outfile dist/index.js && gjsify run dist/index.js"
12
12
  },
13
13
  "devDependencies": {
14
- "@girs/adw-1": "^1.10.0-4.0.0-rc.3",
15
- "@girs/gio-2.0": "^2.88.0-4.0.0-rc.3",
16
- "@girs/gjs": "^4.0.0-rc.3",
17
- "@girs/gobject-2.0": "^2.88.0-4.0.0-rc.3",
18
- "@girs/gtk-4.0": "^4.23.0-4.0.0-rc.3",
19
- "@gjsify/cli": "^0.1.13",
20
- "@gjsify/esbuild-plugin-blueprint": "^0.1.13",
14
+ "@girs/adw-1": "^1.10.0-4.0.0-rc.9",
15
+ "@girs/gio-2.0": "^2.88.0-4.0.0-rc.9",
16
+ "@girs/gjs": "^4.0.0-rc.9",
17
+ "@girs/gobject-2.0": "^2.88.0-4.0.0-rc.9",
18
+ "@girs/gtk-4.0": "^4.23.0-4.0.0-rc.9",
19
+ "@gjsify/cli": "^0.2.0",
20
+ "@gjsify/esbuild-plugin-blueprint": "^0.2.0",
21
21
  "@types/node": "^25.6.0",
22
- "typescript": "^6.0.2"
22
+ "typescript": "^6.0.3"
23
23
  },
24
24
  "dependencies": {
25
- "@gjsify/canvas2d": "^0.1.13"
25
+ "@gjsify/canvas2d": "^0.2.0"
26
26
  }
27
27
  }
@@ -1,7 +1,7 @@
1
1
  import GObject from 'gi://GObject?version=2.0';
2
2
  import type Gtk from 'gi://Gtk?version=4.0';
3
3
  import Adw from 'gi://Adw?version=1';
4
- import { Canvas2DWidget } from '@gjsify/canvas2d';
4
+ import { Canvas2DBridge } from '@gjsify/canvas2d';
5
5
  import { startAnimation } from './draw.js';
6
6
  import Template from './main-window.blp';
7
7
 
@@ -22,7 +22,7 @@ export class MainWindow extends Adw.ApplicationWindow {
22
22
  constructor(application: Adw.Application) {
23
23
  super({ application });
24
24
 
25
- const canvasWidget = new Canvas2DWidget();
25
+ const canvasWidget = new Canvas2DBridge();
26
26
  canvasWidget.set_hexpand(true);
27
27
  canvasWidget.set_vexpand(true);
28
28
  canvasWidget.installGlobals();
@@ -11,19 +11,19 @@
11
11
  "dev": "gjsify build src/index.ts --outfile dist/index.js --globals auto,dom && gjsify run dist/index.js"
12
12
  },
13
13
  "devDependencies": {
14
- "@girs/adw-1": "^1.10.0-4.0.0-rc.3",
15
- "@girs/gio-2.0": "^2.88.0-4.0.0-rc.3",
16
- "@girs/gjs": "^4.0.0-rc.3",
17
- "@girs/gobject-2.0": "^2.88.0-4.0.0-rc.3",
18
- "@girs/gtk-4.0": "^4.23.0-4.0.0-rc.3",
19
- "@gjsify/canvas2d": "^0.1.13",
20
- "@gjsify/cli": "^0.1.13",
21
- "@gjsify/esbuild-plugin-blueprint": "^0.1.13",
14
+ "@girs/adw-1": "^1.10.0-4.0.0-rc.9",
15
+ "@girs/gio-2.0": "^2.88.0-4.0.0-rc.9",
16
+ "@girs/gjs": "^4.0.0-rc.9",
17
+ "@girs/gobject-2.0": "^2.88.0-4.0.0-rc.9",
18
+ "@girs/gtk-4.0": "^4.23.0-4.0.0-rc.9",
19
+ "@gjsify/canvas2d": "^0.2.0",
20
+ "@gjsify/cli": "^0.2.0",
21
+ "@gjsify/esbuild-plugin-blueprint": "^0.2.0",
22
22
  "@types/node": "^25.6.0",
23
- "typescript": "^6.0.2"
23
+ "typescript": "^6.0.3"
24
24
  },
25
25
  "dependencies": {
26
- "@gjsify/webgl": "^0.1.13",
26
+ "@gjsify/webgl": "^0.2.0",
27
27
  "excalibur": "0.32.0"
28
28
  }
29
29
  }
@@ -1,8 +1,8 @@
1
1
  import GObject from 'gi://GObject?version=2.0';
2
2
  import type Gtk from 'gi://Gtk?version=4.0';
3
3
  import Adw from 'gi://Adw?version=1';
4
- import { CanvasWebGLWidget } from '@gjsify/webgl';
5
- import { Canvas2DWidget } from '@gjsify/canvas2d';
4
+ import { WebGLBridge } from '@gjsify/webgl';
5
+ import { Canvas2DBridge } from '@gjsify/canvas2d';
6
6
  import { startGame } from './game.js';
7
7
  import Template from './main-window.blp';
8
8
 
@@ -32,7 +32,7 @@ export class MainWindow extends Adw.ApplicationWindow {
32
32
  child = this._canvasContainer.get_first_child();
33
33
  }
34
34
 
35
- const widget = useFallback ? new Canvas2DWidget() : new CanvasWebGLWidget();
35
+ const widget = useFallback ? new Canvas2DBridge() : new WebGLBridge();
36
36
  widget.set_hexpand(true);
37
37
  widget.set_vexpand(true);
38
38
  widget.installGlobals();
@@ -11,19 +11,19 @@
11
11
  "dev": "gjsify build src/index.ts --outfile dist/index.js && gjsify run dist/index.js"
12
12
  },
13
13
  "devDependencies": {
14
- "@girs/adw-1": "^1.10.0-4.0.0-rc.3",
15
- "@girs/gio-2.0": "^2.88.0-4.0.0-rc.3",
16
- "@girs/gjs": "^4.0.0-rc.3",
17
- "@girs/gobject-2.0": "^2.88.0-4.0.0-rc.3",
18
- "@girs/gtk-4.0": "^4.23.0-4.0.0-rc.3",
19
- "@gjsify/cli": "^0.1.13",
20
- "@gjsify/esbuild-plugin-blueprint": "^0.1.13",
14
+ "@girs/adw-1": "^1.10.0-4.0.0-rc.9",
15
+ "@girs/gio-2.0": "^2.88.0-4.0.0-rc.9",
16
+ "@girs/gjs": "^4.0.0-rc.9",
17
+ "@girs/gobject-2.0": "^2.88.0-4.0.0-rc.9",
18
+ "@girs/gtk-4.0": "^4.23.0-4.0.0-rc.9",
19
+ "@gjsify/cli": "^0.2.0",
20
+ "@gjsify/esbuild-plugin-blueprint": "^0.2.0",
21
21
  "@types/node": "^25.6.0",
22
- "@types/three": "^0.183.1",
23
- "typescript": "^6.0.2"
22
+ "@types/three": "^0.184.0",
23
+ "typescript": "^6.0.3"
24
24
  },
25
25
  "dependencies": {
26
- "@gjsify/webgl": "^0.1.13",
27
- "three": "0.183.2"
26
+ "@gjsify/webgl": "^0.2.0",
27
+ "three": "0.184.0"
28
28
  }
29
29
  }
@@ -1,7 +1,7 @@
1
1
  import GObject from 'gi://GObject?version=2.0';
2
2
  import type Gtk from 'gi://Gtk?version=4.0';
3
3
  import Adw from 'gi://Adw?version=1';
4
- import { CanvasWebGLWidget } from '@gjsify/webgl';
4
+ import { WebGLBridge } from '@gjsify/webgl';
5
5
  import { startScene } from './scene.js';
6
6
  import Template from './main-window.blp';
7
7
 
@@ -22,7 +22,7 @@ export class MainWindow extends Adw.ApplicationWindow {
22
22
  constructor(application: Adw.Application) {
23
23
  super({ application });
24
24
 
25
- const glArea = new CanvasWebGLWidget();
25
+ const glArea = new WebGLBridge();
26
26
  glArea.set_hexpand(true);
27
27
  glArea.set_vexpand(true);
28
28
  glArea.installGlobals();
@@ -11,12 +11,12 @@
11
11
  "dev": "gjsify build src/index.ts --outfile dist/index.js && gjsify run dist/index.js"
12
12
  },
13
13
  "devDependencies": {
14
- "@gjsify/cli": "^0.1.13",
15
- "@gjsify/node-globals": "^0.1.13",
16
- "@gjsify/runtime": "^0.1.13",
14
+ "@gjsify/cli": "^0.2.0",
15
+ "@gjsify/node-globals": "^0.2.0",
16
+ "@gjsify/runtime": "^0.2.0",
17
17
  "@types/node": "^25.6.0",
18
18
  "@types/yargs": "^17.0.35",
19
- "typescript": "^6.0.2"
19
+ "typescript": "^6.0.3"
20
20
  },
21
21
  "dependencies": {
22
22
  "yargs": "^18.0.0"
@@ -11,13 +11,13 @@
11
11
  "dev": "gjsify build src/index.ts --outfile dist/index.js && gjsify run dist/index.js"
12
12
  },
13
13
  "devDependencies": {
14
- "@gjsify/cli": "^0.1.13",
14
+ "@gjsify/cli": "^0.2.0",
15
15
  "@types/node": "^25.6.0",
16
- "typescript": "^6.0.2"
16
+ "typescript": "^6.0.3"
17
17
  },
18
18
  "dependencies": {
19
- "@girs/gio-2.0": "^2.88.0-4.0.0-rc.3",
20
- "@girs/glib-2.0": "^2.88.0-4.0.0-rc.3",
21
- "@girs/gtk-4.0": "^4.23.0-4.0.0-rc.3"
19
+ "@girs/gio-2.0": "^2.88.0-4.0.0-rc.9",
20
+ "@girs/glib-2.0": "^2.88.0-4.0.0-rc.9",
21
+ "@girs/gtk-4.0": "^4.23.0-4.0.0-rc.9"
22
22
  }
23
23
  }
@@ -11,12 +11,12 @@
11
11
  "dev": "gjsify build src/index.ts --outfile dist/index.js && gjsify run dist/index.js"
12
12
  },
13
13
  "devDependencies": {
14
- "@gjsify/cli": "^0.1.13",
15
- "@gjsify/node-globals": "^0.1.13",
16
- "@gjsify/runtime": "^0.1.13",
14
+ "@gjsify/cli": "^0.2.0",
15
+ "@gjsify/node-globals": "^0.2.0",
16
+ "@gjsify/runtime": "^0.2.0",
17
17
  "@types/express": "^5.0.6",
18
18
  "@types/node": "^25.6.0",
19
- "typescript": "^6.0.2"
19
+ "typescript": "^6.0.3"
20
20
  },
21
21
  "dependencies": {
22
22
  "express": "^5.2.1"
@@ -11,14 +11,14 @@
11
11
  "dev": "gjsify build src/index.ts --outfile dist/index.js && gjsify run dist/index.js"
12
12
  },
13
13
  "devDependencies": {
14
- "@gjsify/cli": "^0.1.13",
15
- "@gjsify/node-globals": "^0.1.13",
16
- "@gjsify/runtime": "^0.1.13",
14
+ "@gjsify/cli": "^0.2.0",
15
+ "@gjsify/node-globals": "^0.2.0",
16
+ "@gjsify/runtime": "^0.2.0",
17
17
  "@types/node": "^25.6.0",
18
- "typescript": "^6.0.2"
18
+ "typescript": "^6.0.3"
19
19
  },
20
20
  "dependencies": {
21
- "@hono/node-server": "^1.19.14",
22
- "hono": "^4.12.14"
21
+ "@hono/node-server": "^2.0.1",
22
+ "hono": "^4.12.16"
23
23
  }
24
24
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gjsify/create-app",
3
- "version": "0.1.13",
3
+ "version": "0.2.0",
4
4
  "description": "Create a new Gjsify project",
5
5
  "type": "module",
6
6
  "main": "lib/create.js",
@@ -40,6 +40,6 @@
40
40
  "devDependencies": {
41
41
  "@types/node": "^25.6.0",
42
42
  "@types/yargs": "^17.0.35",
43
- "typescript": "^6.0.2"
43
+ "typescript": "^6.0.3"
44
44
  }
45
45
  }