UNPKG

refine-apito

Version:

A data provider for Refine that connects to Apito - a headless CMS and backend builder.

109 lines 2.42 kB
{ "version": "0.2.8", "license": "MIT", "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.js" } }, "files": [ "dist", "src" ], "engines": { "node": ">=16" }, "jest": { "preset": "ts-jest", "testEnvironment": "node", "transform": { "^.+\\.(ts|tsx)$": "ts-jest" } }, "peerDependencies": { "@refinedev/core": "^5.0.2", "react": ">=18" }, "husky": { "hooks": { "pre-commit": "eslint src" } }, "prettier": { "printWidth": 80, "semi": true, "singleQuote": true, "trailingComma": "es5" }, "name": "refine-apito", "author": "fahim", "size-limit": [ { "path": "dist/index.js", "limit": "10 KB" }, { "path": "dist/index.mjs", "limit": "10 KB" } ], "devDependencies": { "@refinedev/core": "5.0.2", "@types/jest": "^30.0.0", "@types/react": "19.1.15", "@types/react-dom": "19.1.9", "@typescript-eslint/eslint-plugin": "^8.44.1", "@typescript-eslint/parser": "^8.44.1", "eslint": "^9.36.0", "eslint-config-prettier": "^10.1.8", "eslint-plugin-prettier": "^5.5.4", "husky": "9.1.7", "jest": "^30.2.0", "prettier": "^3.6.2", "react": "19.1.1", "react-dom": "19.1.1", "ts-jest": "^29.4.4", "tslib": "2.8.1", "tsup": "^8.5.0", "typescript": "5.9.2" }, "dependencies": { "@types/pluralize": "0.0.33", "@urql/core": "6.0.1", "pluralize": "8.0.0" }, "keywords": [ "refine", "refinedev", "apito", "headless-cms", "graphql", "data-provider", "react" ], "repository": { "type": "git", "url": "https://github.com/apito-io/refine-apito.git" }, "bugs": { "url": "https://github.com/apito-io/refine-apito/issues" }, "homepage": "https://github.com/apito-io/refine-apito#readme", "description": "A data provider for Refine that connects to Apito - a headless CMS and backend builder.", "scripts": { "start": "tsup --watch", "build": "tsup", "test": "jest --passWithNoTests", "lint": "eslint src", "size": "size-limit", "analyze": "size-limit --why", "docs:dev": "docz dev", "docs:build": "docz build", "deploy:docs": "gh-pages -d .docz/dist" } }