mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
58 lines
1.2 KiB
JSON
58 lines
1.2 KiB
JSON
{
|
|
"name": "@metabuilder/services",
|
|
"version": "1.0.0",
|
|
"description": "Service layer for MetaBuilder - HTTP clients, WebSocket connections, and service abstractions",
|
|
"type": "module",
|
|
"main": "src/index.ts",
|
|
"types": "src/index.ts",
|
|
"homepage": "https://github.com/metabuilder/metabuilder",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/metabuilder/metabuilder.git",
|
|
"directory": "redux/services"
|
|
},
|
|
"author": "MetaBuilder Dev Team",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"services",
|
|
"http-client",
|
|
"websocket",
|
|
"axios",
|
|
"socket.io",
|
|
"metabuilder",
|
|
"api"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "echo 'Test suite coming soon'",
|
|
"lint": "echo 'Lint configured in root'"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^1.13.5",
|
|
"socket.io-client": "^4.8.3"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^18.0.0 || ^19.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^19.2.14",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./src/index.ts",
|
|
"default": "./src/index.ts"
|
|
}
|
|
},
|
|
"files": [
|
|
"src",
|
|
"README.md",
|
|
"package.json"
|
|
],
|
|
"engines": {
|
|
"node": ">=18.0.0",
|
|
"npm": ">=9.0.0"
|
|
}
|
|
}
|