├── .gitignore ├── READMe.md ├── assets └── result.png ├── package.json ├── pnpm-lock.yaml ├── src ├── index.ts └── lib │ ├── schema.ts │ └── utils.ts └── tsconfig.script.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RGB-Team/registry-builder/HEAD/.gitignore -------------------------------------------------------------------------------- /READMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RGB-Team/registry-builder/HEAD/READMe.md -------------------------------------------------------------------------------- /assets/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RGB-Team/registry-builder/HEAD/assets/result.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RGB-Team/registry-builder/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RGB-Team/registry-builder/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RGB-Team/registry-builder/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/lib/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RGB-Team/registry-builder/HEAD/src/lib/schema.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RGB-Team/registry-builder/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /tsconfig.script.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RGB-Team/registry-builder/HEAD/tsconfig.script.json --------------------------------------------------------------------------------