litecanvas 0.103.3 → 0.103.4
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/README.md +2 -2
- package/dist/dist.dev.js +1 -1
- package/package.json +6 -6
- package/src/version.js +1 -1
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ Litecanvas is a lightweight HTML5 canvas 2D engine suitable for small web games,
|
|
|
29
29
|
|
|
30
30
|
## Getting Started
|
|
31
31
|
|
|
32
|
-
You can
|
|
32
|
+
You can play around with Litecanvas in the [Playground](https://litecanvas.github.io) without installing nothing.
|
|
33
33
|
|
|
34
34
|
If you want to test locally, just use one of the installation options.
|
|
35
35
|
|
|
@@ -45,7 +45,7 @@ Create a HTML file and add a `<script>` tag with one of our CDN links:
|
|
|
45
45
|
<script src="https://cdn.jsdelivr.net/npm/litecanvas"></script>
|
|
46
46
|
```
|
|
47
47
|
|
|
48
|
-
### Template
|
|
48
|
+
### ESM Template
|
|
49
49
|
|
|
50
50
|
For those who are familiar with Node/NPM, we have a [basic template](https://github.com/litecanvas/template).
|
|
51
51
|
|
package/dist/dist.dev.js
CHANGED
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "litecanvas",
|
|
3
|
-
"version": "0.103.
|
|
3
|
+
"version": "0.103.4",
|
|
4
4
|
"description": "Lightweight HTML5 canvas 2D game engine suitable for small projects and creative coding. Inspired by PICO-8 and p5.js/Processing.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Luiz Bills <luizbills@pm.me>",
|
|
7
7
|
"contributors": [],
|
|
8
|
-
"homepage": "https://litecanvas.github.io
|
|
8
|
+
"homepage": "https://litecanvas.github.io",
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
11
11
|
"url": "git+https://github.com/litecanvas/game-engine.git"
|
|
@@ -32,15 +32,15 @@
|
|
|
32
32
|
"creative coding"
|
|
33
33
|
],
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@happy-dom/global-registrator": "^20.
|
|
35
|
+
"@happy-dom/global-registrator": "^20.8.3",
|
|
36
36
|
"@size-limit/preset-small-lib": "^12.0.0",
|
|
37
|
-
"@swc/core": "^1.15.
|
|
38
|
-
"ava": "^
|
|
37
|
+
"@swc/core": "^1.15.18",
|
|
38
|
+
"ava": "^7.0.0",
|
|
39
39
|
"esbuild": "^0.27.3",
|
|
40
40
|
"genversion": "^3.2.0",
|
|
41
41
|
"gzip-size": "^7.0.0",
|
|
42
42
|
"prettier": "^3.8.1",
|
|
43
|
-
"sinon": "^21.0.
|
|
43
|
+
"sinon": "^21.0.2",
|
|
44
44
|
"size-limit": "^12.0.0",
|
|
45
45
|
"tap-min": "^3.0.0"
|
|
46
46
|
},
|
package/src/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Generated by genversion.
|
|
2
|
-
export const version = '0.103.
|
|
2
|
+
export const version = '0.103.4'
|