@gjsify/example-dom-iframe-basic 0.1.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.
Files changed (1) hide show
  1. package/package.json +28 -0
package/package.json ADDED
@@ -0,0 +1,28 @@
1
+ {
2
+ "name": "@gjsify/example-dom-iframe-basic",
3
+ "version": "0.1.3",
4
+ "description": "Basic iframe example demonstrating HTMLIFrameElement with WebKit.WebView and bidirectional postMessage",
5
+ "main": "dist/index.gjs.js",
6
+ "type": "module",
7
+ "files": [
8
+ "dist"
9
+ ],
10
+ "scripts": {
11
+ "clear": "rm -rf dist tsconfig.tsbuildinfo",
12
+ "check": "tsc --noEmit --skipLibCheck --strictNullChecks false --noImplicitAny false",
13
+ "start": "gjsify run dist/index.gjs.js",
14
+ "build": "yarn build:gjs",
15
+ "build:gjs": "gjsify build src/index.ts --app gjs --outfile dist/index.gjs.js"
16
+ },
17
+ "devDependencies": {
18
+ "@girs/gio-2.0": "^2.88.0-4.0.0-rc.1",
19
+ "@girs/gjs": "^4.0.0-rc.1",
20
+ "@girs/gtk-4.0": "^4.23.0-4.0.0-rc.1",
21
+ "@gjsify/cli": "^0.1.3",
22
+ "@gjsify/iframe": "^0.1.3",
23
+ "@types/node": "^25.5.2",
24
+ "typescript": "^6.0.2"
25
+ },
26
+ "author": "Pascal Garber <pascal@artandcode.studio>",
27
+ "license": "MIT"
28
+ }