Files
layered-generative-art/package.json

44 lines
1.1 KiB
JSON

{
"name": "layered-generative-art",
"description": "An easy-to-use library to generate random images from a set of layers",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "409",
"type": "module",
"module": "index.ts",
"license": "MIT",
"files": [
"dist/*.js",
"dist/*.d.ts"
],
"keywords": [
"generative",
"random",
"art",
"image",
"images",
"generative-art"
],
"homepage": "https://github.com/4-0-9/layered-generative-art",
"repository": {
"type": "git",
"url": "git+https://github.com/4-0-9/layered-generative-art.git"
},
"bugs": "https://github.com/4-0-9/layered-generative-art/issues",
"scripts": {
"build": "bun run build.mjs",
"publish": "bun run build && npm publish"
},
"dependencies": {
"sharp": "^0.33.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"devDependencies": {
"@types/bun": "latest",
"bun-plugin-dts": "^0.2.1"
}
}