ts-noise
Version:
Simple gradient noise library for use with Three.js. Now with fBm!
45 lines • 1.16 kB
JSON
{
"name": "ts-noise",
"version": "0.0.5",
"description": "Simple gradient noise library for use with Three.js. Now with fBm!",
"author": "Faraz Shaikh <farazzshaikh@gmail.com>",
"license": "MIT",
"main": "index.cjs",
"module": "index.js",
"types": "types/index.d.ts",
"private": false,
"workspaces": [
"example"
],
"type": "module",
"repository": "https://github.com/FarazzShaikh/ts-noise",
"homepage": "https://github.com/FarazzShaikh/ts-noise",
"scripts": {
"build": "rollup -c",
"doc": "jsdoc --configure jsdoc.json --verbose && chmod +x scripts/doc.sh && scripts/doc.sh",
"dev": "yarn build & yarn workspace example dev"
},
"keywords": [
"threejs",
"3d",
"2d",
"noise",
"perlin",
"perlin noise",
"fbm",
"terrain",
"mountains"
],
"dependencies": {},
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.2",
"jsdoc": "^3.6.6",
"loke-jsdoc-theme": "^2.1.0",
"rollup": "^2.46.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-glslify": "^1.2.0",
"rollup-plugin-uglify": "^6.0.4",
"tslib": "^2.8.1",
"typescript": "^5.8.2"
}
}