q5 3.5.1 → 3.6.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/.prettierignore +1 -0
- package/README.md +1 -1
- package/defs/q5-c2d.d.ts +3950 -0
- package/deno.json +1 -1
- package/package.json +2 -1
- package/q5.d.ts +2649 -3027
- package/q5.js +334 -201
- package/q5.min.js +2 -2
package/deno.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "q5",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.6.0",
|
|
4
4
|
"description": "Beginner friendly graphics powered by WebGPU and optimized for interactive art!",
|
|
5
5
|
"author": "quinton-ashley",
|
|
6
6
|
"contributors": [
|
|
@@ -34,6 +34,7 @@
|
|
|
34
34
|
"dist": "bun bundle && bun min",
|
|
35
35
|
"dist-p5play": "bun dist && cp q5.js ../../web/p5play-web/v3/q5.js && cp q5.min.js ../../web/p5play-web/v3/q5.min.js",
|
|
36
36
|
"tests": "jest test",
|
|
37
|
+
"types": "node lang/types.js",
|
|
37
38
|
"v": "npm version patch --force",
|
|
38
39
|
"V": "npm version minor --force",
|
|
39
40
|
"version": "git add -A",
|