Template base para proyectos SaaS multi-tenant. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React/Vite) - apps/database (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
35 lines
617 B
JSON
35 lines
617 B
JSON
{
|
|
"name": "postgres-bytea",
|
|
"main": "index.js",
|
|
"version": "1.0.1",
|
|
"description": "Postgres bytea parser",
|
|
"license": "MIT",
|
|
"repository": "bendrucker/postgres-bytea",
|
|
"author": {
|
|
"name": "Ben Drucker",
|
|
"email": "bvdrucker@gmail.com",
|
|
"url": "bendrucker.me"
|
|
},
|
|
"engines": {
|
|
"node": ">=0.10.0"
|
|
},
|
|
"scripts": {
|
|
"test": "standard && tape test.js"
|
|
},
|
|
"keywords": [
|
|
"bytea",
|
|
"postgres",
|
|
"binary",
|
|
"parser"
|
|
],
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"tape": "^4.0.0",
|
|
"standard": "^4.0.0"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"readme.md"
|
|
]
|
|
}
|