supabase-service-manager
Version:
TypeScript library for user authentication, profile management, and basic CRUD operations using Supabase, designed for vanilla JavaScript consumption
60 lines (59 loc) • 1.45 kB
JSON
{
"name": "supabase-service-manager",
"version": "1.0.2",
"description": "TypeScript library for user authentication, profile management, and basic CRUD operations using Supabase, designed for vanilla JavaScript consumption",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"type-check": "tsc --noEmit",
"docs": "typedoc",
"dev": "vite build --watch",
"prepublishOnly": "npm run type-check && npm run build"
},
"keywords": [
"supabase",
"authentication",
"user-management",
"crud-operations",
"database",
"service-manager",
"typescript",
"vanilla-js",
"library"
],
"author": "@alsandre",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tsu-front-end/supa-lib.git"
},
"homepage": "https://github.com/tsu-front-end/supa-lib#readme",
"bugs": {
"url": "https://github.com/tsu-front-end/supa-lib/issues"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@supabase/supabase-js": "^2.39.0"
},
"devDependencies": {
"terser": "^5.42.0",
"typedoc": "^0.25.7",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vite-plugin-dts": "^3.7.0"
}
}