c0599e30ab
- Created .gitignore to exclude unnecessary files - Added README.md with installation and usage instructions - Initialized package.json with dependencies and configurations - Set up tsconfig.json for TypeScript compiler options - Implemented basic index.ts file for logging - Added Supabase function structure in ai-structured directory - Created test files for user authentication and function invocation
18 lines
316 B
JSON
18 lines
316 B
JSON
{
|
|
"dependencies": {
|
|
"@supabase/supabase-js": "^2.90.1",
|
|
"supabase": "^2.72.6",
|
|
"supabase-js": "^1.0.4"
|
|
},
|
|
"name": "genesis-2",
|
|
"module": "index.ts",
|
|
"type": "module",
|
|
"private": true,
|
|
"devDependencies": {
|
|
"@types/bun": "latest"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5"
|
|
}
|
|
}
|