mandelbrot: adding a simple version of mandelbrot

This commit is contained in:
Sheldan
2026-02-04 20:06:25 +01:00
parent ef162a7dc2
commit 0cd89ad975
6 changed files with 519 additions and 1 deletions

19
mandelbrot/package.json Normal file
View File

@@ -0,0 +1,19 @@
{
"name": "mandel-brot",
"version": "1.0.0",
"description": "",
"private": true,
"type": "module",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "MIT",
"dependencies": {
"canvas-common": "file:../canvas-common"
},
"devDependencies": {
"vite": "^5.1.5"
}
}