UNPKG

bentogreed

Version:

A lightweight, framework-agnostic library for generating bento grid layouts

62 lines (61 loc) 1.52 kB
{ "name": "bentogreed", "version": "0.1.0", "description": "A lightweight, framework-agnostic library for generating bento grid layouts", "type": "module", "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "exports": { ".": { "import": "./dist/index.mjs", "require": "./dist/index.cjs", "types": "./dist/index.d.ts" } }, "files": [ "dist", "README.md", "LICENSE" ], "scripts": { "dev": "vite", "build": "npm run build:types && npm run build:lib", "build:types": "tsc -p tsconfig.build.json", "build:lib": "vite build --config vite.config.lib.ts", "build:demo": "vite build", "preview": "vite preview", "test": "vitest --run", "test:watch": "vitest --watch", "prepublishOnly": "npm run build && npm test" }, "keywords": [ "bento", "grid", "layout", "treemap", "squarified", "responsive", "typescript" ], "author": "matanfield", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/matanfield/bentogrid.git" }, "bugs": { "url": "https://github.com/matanfield/bentogrid/issues" }, "homepage": "https://github.com/matanfield/bentogrid#readme", "devDependencies": { "@types/react": "^18.2.43", "@types/react-dom": "^18.2.43", "@vitejs/plugin-react": "^4.2.1", "react": "^18.2.0", "react-dom": "^18.2.0", "typescript": "^5.3.3", "vite": "^5.0.8", "vitest": "^1.6.1" } }