@kayelaa/canvas 0.1.10 → 0.1.11
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 +3 -0
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -15,6 +15,9 @@ It's a **very thin declarative layer** on top of LEA — all performance-critica
|
|
|
15
15
|
|
|
16
16
|
Made by **Kayelaa Cagara** (@LianeKayee39 on X / GitHub) in Calamba, Philippines.
|
|
17
17
|
|
|
18
|
+
## API Reference (worth checking if you want a true API reference for every variables, properties, etc)
|
|
19
|
+
[API Reference](./docs/README.md)
|
|
20
|
+
|
|
18
21
|
**This Documentation might be INACCURATE! Always visit the .d.ts files to verify.**
|
|
19
22
|
|
|
20
23
|
## Quick Start — Fully Typed Version (copy-paste this)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kayelaa/canvas",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.11",
|
|
4
4
|
"description": "Declarative entity composition hooks + canvas utilities for LEA-based 2D games",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Kayelaa Cagara",
|
|
@@ -35,11 +35,15 @@
|
|
|
35
35
|
],
|
|
36
36
|
"scripts": {
|
|
37
37
|
"build": "tsup",
|
|
38
|
-
"clean": "rm -rf dist"
|
|
38
|
+
"clean": "rm -rf dist",
|
|
39
|
+
"docs": "typedoc",
|
|
40
|
+
"docs:clean": "rm -rf docs"
|
|
39
41
|
},
|
|
40
42
|
"devDependencies": {
|
|
41
43
|
"@types/web": "^0.0.327",
|
|
42
44
|
"tsup": "^8.5.1",
|
|
45
|
+
"typedoc": "^0.28.16",
|
|
46
|
+
"typedoc-plugin-markdown": "^4.9.0",
|
|
43
47
|
"typescript": "^5.9.3"
|
|
44
48
|
}
|
|
45
49
|
}
|