@gjsify/example-dom-three-postprocessing-pixel 0.18.0 → 0.20.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gjsify/example-dom-three-postprocessing-pixel",
3
- "version": "0.18.0",
3
+ "version": "0.20.0",
4
4
  "description": "Three.js pixel post-processing example ported from refs/three/examples/webgl_postprocessing_pixel.html with Adwaita controls",
5
5
  "main": "dist/gjs.js",
6
6
  "type": "module",
@@ -17,14 +17,16 @@
17
17
  "clear": "rm -rf dist tsconfig.tsbuildinfo",
18
18
  "check": "gjsify tsc --noEmit --skipLibCheck --strictNullChecks false --noImplicitAny false",
19
19
  "start": "gjsify run dist/gjs.js",
20
+ "start:node": "gjsify run dist/gjs.node.mjs --runtime node",
20
21
  "start:browser": "http-server dist",
21
- "build": "gjsify run build:gjs && gjsify run build:browser && gjsify run build:assets",
22
+ "build": "gjsify run build:gjs && gjsify run build:node && gjsify run build:browser && gjsify run build:assets",
22
23
  "build:gjs": "gjsify build src/gjs/gjs.ts --app gjs --outfile dist/gjs.js",
24
+ "build:node": "gjsify build src/gjs/gjs.ts --app node --outfile dist/gjs.node.mjs --globals auto,dom,fetch,XMLHttpRequest,ProgressEvent,MouseEvent,PointerEvent,KeyboardEvent,WheelEvent",
23
25
  "build:browser": "gjsify build src/browser/browser-main.ts --app browser --outfile dist/browser.js",
24
26
  "build:assets": "cp -f src/browser/index.html dist/index.html && cp -f src/browser/webgl.css dist/webgl.css && cp -rf src/assets dist/assets"
25
27
  },
26
28
  "dependencies": {
27
- "@gjsify/webgl": "^0.18.0"
29
+ "@gjsify/webgl": "^0.20.0"
28
30
  },
29
31
  "devDependencies": {
30
32
  "@girs/adw-1": "^4.1.0",
@@ -32,11 +34,12 @@
32
34
  "@girs/gjs": "^4.1.0",
33
35
  "@girs/gobject-2.0": "^4.1.0",
34
36
  "@girs/gtk-4.0": "^4.1.0",
35
- "@gjsify/adwaita-icons": "^0.18.0",
36
- "@gjsify/adwaita-web": "^0.18.0",
37
- "@gjsify/cli": "^0.18.0",
38
- "@gjsify/devtools": "^0.18.0",
39
- "@gjsify/vite-plugin-blueprint": "^0.18.0",
37
+ "@gjsify/adwaita-icons": "^0.20.0",
38
+ "@gjsify/adwaita-web": "^0.20.0",
39
+ "@gjsify/cli": "^0.20.0",
40
+ "@gjsify/devtools": "^0.20.0",
41
+ "@gjsify/node-gi": "file:../../../packages/node-gi/node-gi",
42
+ "@gjsify/vite-plugin-blueprint": "^0.20.0",
40
43
  "@types/node": "^25.9.2",
41
44
  "@types/three": "^0.185.0",
42
45
  "http-server": "^14.1.1",
@@ -55,6 +58,16 @@
55
58
  },
56
59
  "homepage": "https://github.com/gjsify/gjsify/tree/main/showcases/dom/three-postprocessing-pixel#readme",
57
60
  "gjsify": {
58
- "tier": 2
61
+ "main": "dist/gjs.js",
62
+ "tier": 2,
63
+ "example": {
64
+ "runtimes": [
65
+ "gjs",
66
+ "node",
67
+ "bun",
68
+ "deno"
69
+ ],
70
+ "node": "dist/gjs.node.mjs"
71
+ }
59
72
  }
60
73
  }