UNPKG

masua

Version:

Simple masonry layout library in TypeScript.

101 lines (100 loc) 1.82 kB
{ "name": "masua", "description": "Simple masonry layout library in TypeScript.", "version": "0.11.8", "repository": "github:tobua/masua", "homepage": "https://tobua.github.io/masua", "license": "MIT", "author": "Matthias Giger", "contributors": [ "Spope (minimasonry)" ], "scripts": { "check": "biome check --write .", "types": "tsc" }, "devDependencies": { "@biomejs/biome": "^2.1.4", "@types/bun": "^1.2.19", "@types/react": "^19.1.9", "typescript": "^5.9.2", "zero-configuration": "^1.0.5" }, "peerDependencies": { "react": ">= 18", "typescript": ">= 5" }, "peerDependenciesMeta": { "react": { "optional": true } }, "trustedDependencies": [ "zero-configuration" ], "workspaces": [ "demo" ], "type": "module", "sideEffects": false, "main": "./index.ts", "exports": { ".": { "default": "./index.ts" }, "./react": { "default": "./react.tsx" } }, "files": [ "*.ts", "*.tsx" ], "keywords": [ "masonry", "staggered", "grid", "pinterest", "layout", "react", "typescript" ], "publishConfig": { "provenance": true }, "configuration": { "gitignore": "bundle", "vscode": "biome", "license": { "extends": "MIT", "authors": [ { "name": "Matthias Giger" }, { "name": "Spope", "year": "2017" } ] }, "typescript": { "extends": "plugin", "compilerOptions": { "jsx": "react-jsx" }, "files": [ "index.ts", "react.tsx" ] }, "biome": { "extends": "recommended", "files": { "includes": [ "**/*", "!demo/**" ] } } } }