seedmusicai-org
v0.1.0
Published
SeedMusic AI metadata and integration helper package for SeedMusic AI music generation workflows for https://seedmusicai.org.
Downloads
10
Maintainers
Readme
seedmusicai-org
seedmusicai-org is a lightweight Node.js metadata and integration helper package for seedmusicai.org.
The package gives automation scripts, content tooling, and future SDK code a stable package name for SeedMusic AI. It exposes the canonical website URL, documentation URL, source repository, local repository path, MDX content path, and Next.js app path used by the project.
Website focus
SeedMusic AI focuses on AI music generation, lyrics-to-song creation, voice cloning, and melody editing workflows. This package does not try to wrap a private production API yet; it publishes a clear, installable metadata layer that can later grow into a fuller SDK or workflow client.
Installation
npm install seedmusicai-orgQuick start
const { getSiteInfo, metadata } = require('seedmusicai-org');
console.log(metadata.homepage);
console.log(getSiteInfo());Metadata API
Use the package when a script needs to know where the site lives, where content is stored, or which repository backs the package.
const site = getSiteInfo();
console.log(site.name);
console.log(site.homepage);
console.log(site.contentPath);
console.log(site.appPath);Returned metadata includes:
- Site name: SeedMusic AI
- Homepage: https://seedmusicai.org
- Documentation: https://seedmusicai.org/docs
- Package name: seedmusicai-org
- Source repository: https://github.com/youram470-art/seedmusicai-org-npm
- Local repository: /Users/mac/Documents/code/seedmusic
- Content path: content/blog
- Next.js app path: src/app
Common use cases
- reference the SeedMusic AI website from scripts.
- attach site metadata to generation, content, and indexing jobs.
- prepare a small base package for future lyrics-to-song and voice tooling.
- Share a stable public package page that points back to https://seedmusicai.org.
Automation example
This package is useful in release scripts, SEO tooling, blog generators, indexing jobs, and content maintenance utilities. A script can import the package, derive the content directory, and consistently point generated output back to the public website.
Links
- Website: https://seedmusicai.org
- Documentation: https://seedmusicai.org/docs
- Source: https://github.com/youram470-art/seedmusicai-org-npm
- Issues: https://github.com/youram470-art/seedmusicai-org-npm/issues
License
MIT
