UNPKG

@pixelation/state

Version:

Composable, reactive state management.

53 lines (52 loc) 1.37 kB
{ "name": "@pixelation/state", "version": "1.0.0", "description": "Composable, reactive state management.", "files": [ "dist/*", "dist/**/*", "CHANGELOG.md", "LICENSE", "README.md" ], "scripts": { "build": "npm run build:lib && npm run build:types", "build:lib": "vite build", "build:types": "tsc -p . --emitDeclarationOnly", "dev": "vite --host" }, "publishConfig": { "access": "public" }, "keywords": [ "state", "atom", "pixelation", "composable", "reactive" ], "author": "Jake Hamilton <jake.hamilton@hey.com>", "license": "Apache-2.0", "exports": { ".": { "import": "./dist/bundle.es.mjs", "require": "./dist/bundle.cjs.js", "default": "./dist/bundle.umd.js", "types": "./dist/index.d.ts" } }, "main": "./dist/bundle.cjs.js", "types": "./dist/index.d.ts", "devDependencies": { "vite": "^5.4.11", "typescript": "^5.6.3" }, "homepage": "https://github.com/jakehamilton/pixelation", "repository": { "type": "git", "url": "https://github.com/jakehamilton/pixelation.git" }, "bugs": { "url": "https://github.com/jakehamilton/pixelation/issues" } }