mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
38 lines
806 B
JSON
38 lines
806 B
JSON
{
|
|
"name": "@metabuilder/api-clients",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"description": "API client hooks for MetaBuilder - DBAL, async data fetching, GitHub integration",
|
|
"main": "src/index.ts",
|
|
"types": "src/index.ts",
|
|
"exports": {
|
|
".": {
|
|
"source": "./src/index.ts",
|
|
"import": "./dist/index.js",
|
|
"types": "./src/index.ts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"test": "jest"
|
|
},
|
|
"dependencies": {
|
|
"@metabuilder/hooks-async": "*",
|
|
"react": "^19.2.4",
|
|
"react-redux": "^9.2.0",
|
|
"redux": "^5.0.1"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^18.0.0 || ^19.0.0",
|
|
"react-redux": "^8.0.0 || ^9.0.0",
|
|
"redux": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
]
|
|
}
|