@gjsify/example-dom-canvas2d-fireworks 0.1.6 → 0.1.7
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/dist/browser.js +1366 -0
- package/dist/canvas2d.css +17 -0
- package/dist/gjs.js +11119 -0
- package/dist/index.html +13 -0
- package/package.json +3 -3
package/dist/index.html
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
+
<title>Fireworks — Canvas 2D</title>
|
|
7
|
+
<link rel="stylesheet" href="canvas2d.css">
|
|
8
|
+
<script defer src="browser.js"></script>
|
|
9
|
+
</head>
|
|
10
|
+
<body>
|
|
11
|
+
<canvas></canvas>
|
|
12
|
+
</body>
|
|
13
|
+
</html>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gjsify/example-dom-canvas2d-fireworks",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "Colorful fireworks Canvas 2D example, adapted from https://codepen.io/juliangarnier/pen/gmOwJX",
|
|
5
5
|
"main": "dist/gjs.js",
|
|
6
6
|
"type": "module",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"@girs/gio-2.0": "^2.88.0-4.0.0-rc.1",
|
|
22
22
|
"@girs/gjs": "^4.0.0-rc.1",
|
|
23
23
|
"@girs/gtk-4.0": "^4.23.0-4.0.0-rc.1",
|
|
24
|
-
"@gjsify/canvas2d": "^0.1.
|
|
25
|
-
"@gjsify/cli": "^0.1.
|
|
24
|
+
"@gjsify/canvas2d": "^0.1.7",
|
|
25
|
+
"@gjsify/cli": "^0.1.7",
|
|
26
26
|
"@types/node": "^25.5.2",
|
|
27
27
|
"http-server": "^14.1.1",
|
|
28
28
|
"typescript": "^6.0.2"
|