mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 01:01:09 +02:00
25 lines
532 B
JSON
25 lines
532 B
JSON
{
|
|
"name": "@manacore/shared-supabase",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"description": "Shared Supabase client and utilities for Manacore monorepo",
|
|
"main": "./src/index.ts",
|
|
"types": "./src/index.ts",
|
|
"exports": {
|
|
".": "./src/index.ts"
|
|
},
|
|
"scripts": {
|
|
"type-check": "tsc --noEmit",
|
|
"clean": "rm -rf dist",
|
|
"lint": "eslint ."
|
|
},
|
|
"dependencies": {
|
|
"@supabase/supabase-js": "^2.81.1"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"peerDependencies": {
|
|
"@manacore/shared-types": "workspace:*"
|
|
}
|
|
}
|