UNPKG

react-ronin

Version:

Access the RONIN data platform via React.

70 lines (69 loc) 1.53 kB
{ "name": "react-ronin", "version": "2.0.1", "license": "Apache-2.0", "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "description": "Access the RONIN data platform via React.", "scripts": { "dev": "bun run build -- --watch", "build": "bunchee", "lint": "bun run lint:tsc && bun run lint:biome --", "lint:biome": "biome check --apply .", "lint:tsc": "tsc --noEmit --pretty", "test": "bun test", "prepare": "husky" }, "files": [ "dist" ], "repository": "ronin-co/react-ronin", "homepage": "https://github.com/ronin-co/react-ronin", "keywords": [ "ronin", "react", "client", "database", "orm" ], "lint-staged": { "**/*": [ "bunx @biomejs/biome format --write" ] }, "exports": { ".": { "types": "./dist/index.d.mts", "import": "./dist/index.mjs", "require": "./dist/index.js" }, "./components": { "types": "./dist/components.d.mts", "import": "./dist/components.mjs", "require": "./dist/components.js" } }, "dependencies": { "ronin": "3.0.5" }, "devDependencies": { "@biomejs/biome": "1.7.3", "@types/bun": "1.1.3", "@types/react": "18.3.2", "bunchee": "5.1.5", "husky": "9.0.11", "lint-staged": "15.2.4", "msw": "2.3.0", "react": "18.3.1", "typescript": "5.4.5" }, "peerDependencies": { "react": ">=18.3.1" }, "peerDependenciesMeta": { "react": { "optional": false } } }