refine-apito
Version:
A data provider for Refine that connects to Apito - a headless CMS and backend builder.
108 lines • 2.48 kB
JSON
{
"version": "1.0.2",
"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"
},
"./graphql-names": {
"types": "./dist/apitoGraphqlNames.d.ts",
"import": "./dist/apitoGraphqlNames.mjs",
"require": "./dist/apitoGraphqlNames.js"
}
},
"files": [
"dist",
"src",
"CHANGELOG.md",
"GRAPHQL_NAMES.md"
],
"engines": {
"node": ">=16"
},
"peerDependencies": {
"@refinedev/core": "^5.0.6",
"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.6",
"@types/jest": "^30.0.0",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"@typescript-eslint/eslint-plugin": "^8.46.1",
"@typescript-eslint/parser": "^8.46.1",
"eslint": "^9.37.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.2.0",
"react-dom": "19.2.0",
"ts-jest": "^29.4.5",
"tslib": "2.8.1",
"tsup": "^8.5.0",
"typescript": "5.9.3"
},
"dependencies": {
"@urql/core": "6.0.1",
"inflection": "^3.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"
}
}