UNPKG

refine-apito

Version:

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

109 lines 2.46 kB
{ "version": "0.0.25", "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": "^4.0.0", "react": ">=16" }, "husky": { "hooks": { "pre-commit": "eslint src --ext .ts,.tsx" } }, "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": "4.57.10", "@types/jest": "^29.5.14", "@types/react": "19.0.8", "@types/react-dom": "19.0.3", "@typescript-eslint/eslint-plugin": "^7.18.0", "@typescript-eslint/parser": "^7.18.0", "eslint": "^8.57.1", "eslint-config-prettier": "^9.1.2", "eslint-plugin-prettier": "^5.5.3", "husky": "9.1.7", "jest": "^29.7.0", "prettier": "^3.6.2", "react": "19.0.0", "react-dom": "19.0.0", "ts-jest": "^29.4.0", "tslib": "2.8.1", "tsup": "^8.5.0", "typescript": "5.7.3" }, "dependencies": { "@types/pluralize": "0.0.33", "@urql/core": "5.2.0", "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 --ext .ts,.tsx", "size": "size-limit", "analyze": "size-limit --why", "docs:dev": "docz dev", "docs:build": "docz build", "deploy:docs": "gh-pages -d .docz/dist" } }