UNPKG

@quantajs/react

Version:

React integration for QuantaJS - A compact, scalable, and developer-friendly state management library for React applications.

65 lines 1.61 kB
{ "name": "@quantajs/react", "private": false, "author": { "name": "Jeel Gajera", "url": "https://github.com/JeelGajera" }, "description": "React integration for QuantaJS - A compact, scalable, and developer-friendly state management library for React applications.", "keywords": [ "quantajs", "quanta", "state-management", "reactivity", "react", "hooks" ], "repository": { "type": "git", "url": "git+https://github.com/quanta-js/quanta.git" }, "bugs": { "url": "https://github.com/quanta-js/quanta/issues" }, "homepage": "https://quantajs.com", "version": "2.0.0-beta.3", "type": "module", "license": "MIT", "main": "./dist/index.js", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.cjs" } }, "files": [ "dist" ], "sideEffects": false, "peerDependencies": { "react": ">=16.8.0" }, "dependencies": { "@quantajs/core": "2.0.0-beta.3" }, "devDependencies": { "@types/react": "^19.1.9", "react": "^19.1.1" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "scripts": { "dev": "npm run format && npm run lint:fix && npm run build", "build": "npm run clean && vite build", "preview": "vite preview", "clean": "rimraf dist", "lint": "eslint \"src/**/*.{ts,tsx}\"", "lint:fix": "eslint \"src/**/*.{ts,tsx}\" --fix", "format": "prettier --write \"src/**/*.{ts,tsx}\"" } }