@prachwal/mandelbrot-generator
Version:
Professional Mandelbrot fractal generator with TypeScript support, interactive web interface, and multiple output formats
79 lines (78 loc) • 2.47 kB
JSON
{
"name": "@prachwal/mandelbrot-generator",
"version": "1.1.1",
"description": "Professional Mandelbrot fractal generator with TypeScript support, interactive web interface, and multiple output formats",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist/**/*",
"web/**/*",
"docs/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"start": "npm run build && node dist/index.js",
"clean": "rm -rf dist coverage",
"examples": "npm run build && node examples.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "c8 jest",
"test:coverage-report": "c8 --reporter=html --reporter=text jest",
"test:generate": "npm run build && node test-generation.js",
"test:gen": "npm run test:generate",
"generate": "npm run test:generate",
"docs": "typedoc",
"docs:md": "typedoc --options typedoc-md.json",
"docs:update-md": "npm run docs:md && cp -r docs-md/* docs/ && echo '📚 Markdown docs updated in docs/ folder'",
"docs:serve": "npm run docs && cd docs && python3 -m http.server 8081",
"docs:watch": "typedoc --watch",
"docs:json": "typedoc --json docs/api.json",
"publish:npm": "npm run clean && npm run build && npm test && npm run docs && npm run docs:update-md && npm publish --access public",
"prepublishOnly": "npm run clean && npm run build && npm test && npm run docs && npm run docs:update-md",
"prepare": "npm run build",
"postpack": "npm run clean"
},
"keywords": [
"mandelbrot",
"fractal",
"generator",
"visualization",
"mathematics",
"complex-numbers",
"typescript",
"canvas",
"svg",
"interactive"
],
"author": {
"name": "prachwal",
"email": "przemyslaw.rachwal@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/prachwal/mandelbrot-generator.git"
},
"bugs": {
"url": "https://github.com/prachwal/mandelbrot-generator/issues"
},
"homepage": "https://github.com/prachwal/mandelbrot-generator#readme",
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/node": "^20.9.0",
"c8": "^8.0.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typedoc": "^0.28.7",
"typedoc-plugin-markdown": "^4.7.0",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=14.0.0"
}
}