├── .actrc ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md ├── actions │ ├── android-gradle-build │ │ └── action.yml │ ├── install-deps │ │ └── action.yml │ ├── ios-build-xcode │ │ └── action.yml │ ├── run-codegen-build │ │ └── action.yml │ ├── setup-maestro │ │ └── action.yml │ └── setup-yarn │ │ └── action.yml ├── dependabot.yml └── workflows │ ├── ci-packages.yml │ ├── deploy.yml │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── assets ├── nitro-module-cli.gif ├── react-native.config.js └── template │ ├── $$iosModuleName$$.podspec │ ├── .github │ ├── dependabot.yml │ └── workflows │ │ ├── android-build.yml │ │ ├── ios-build.yml │ │ └── release.yml │ ├── .watchmanconfig │ ├── LICENSE │ ├── README.md │ ├── android │ ├── CMakeLists.txt │ ├── build.gradle │ ├── fix-prefab.gradle │ ├── gradle.properties │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── cpp │ │ └── cpp-adapter.cpp │ │ └── java │ │ └── com │ │ └── $$androidNamespace$$ │ │ ├── $$androidCxxLibName$$Package.kt │ │ └── $$androidCxxLibName$$Package_view.kt │ ├── babel.config.js │ ├── bunfig.toml │ ├── cpp │ └── .gitkeep │ ├── gitignore │ ├── ios │ └── Bridge.h │ ├── nitro.json │ ├── package.json │ ├── release.config.cjs │ └── tsconfig.json ├── bun.lock ├── bunfig.toml ├── commitlint.config.cjs ├── docs ├── .gitignore ├── README.md ├── bun.lockb ├── docs │ ├── commands.md │ ├── intro.md │ ├── troubleshooting.md │ └── usage │ │ ├── _category_.json │ │ ├── create-a-nitro-module.md │ │ ├── create-an-app-with-nitro-module-setup.md │ │ └── installation.md ├── docusaurus.config.ts ├── package.json ├── sidebars.ts ├── src │ ├── components │ │ └── HomepageFeatures │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ ├── css │ │ └── custom.css │ └── pages │ │ ├── index.module.css │ │ ├── index.tsx │ │ └── markdown-page.md ├── static │ ├── .nojekyll │ └── img │ │ ├── favicon.ico │ │ ├── undraw_docusaurus_mountain.svg │ │ ├── undraw_docusaurus_react.svg │ │ └── undraw_docusaurus_tree.svg └── tsconfig.json ├── e2e-tests ├── module.e2e.yaml └── view.e2e.yaml ├── eslint.config.js ├── lefthook.yml ├── ncli.tape ├── package.json ├── release.config.cjs ├── scripts └── e2e-maestro.sh ├── src ├── cli │ ├── create.ts │ └── index.ts ├── code-snippets │ ├── code.cpp.ts │ ├── code.js.ts │ ├── code.kotlin.ts │ └── code.swift.ts ├── constants.ts ├── file-generators │ ├── android-file-generator.ts │ ├── cpp-file-generator.ts │ ├── ios-file-generator.ts │ └── js-file-generator.ts ├── generate-nitro-package.ts ├── nitro-spinner.ts ├── types.ts └── utils.ts ├── test-local.sh ├── tsconfig.json └── tsup.config.ts /.actrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/.actrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/actions/android-gradle-build/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/.github/actions/android-gradle-build/action.yml -------------------------------------------------------------------------------- /.github/actions/install-deps/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/.github/actions/install-deps/action.yml -------------------------------------------------------------------------------- /.github/actions/ios-build-xcode/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/.github/actions/ios-build-xcode/action.yml -------------------------------------------------------------------------------- /.github/actions/run-codegen-build/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/.github/actions/run-codegen-build/action.yml -------------------------------------------------------------------------------- /.github/actions/setup-maestro/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/.github/actions/setup-maestro/action.yml -------------------------------------------------------------------------------- /.github/actions/setup-yarn/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/.github/actions/setup-yarn/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci-packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/.github/workflows/ci-packages.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/README.md -------------------------------------------------------------------------------- /assets/nitro-module-cli.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/assets/nitro-module-cli.gif -------------------------------------------------------------------------------- /assets/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/assets/react-native.config.js -------------------------------------------------------------------------------- /assets/template/$$iosModuleName$$.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/assets/template/$$iosModuleName$$.podspec -------------------------------------------------------------------------------- /assets/template/.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/assets/template/.github/dependabot.yml -------------------------------------------------------------------------------- /assets/template/.github/workflows/android-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/assets/template/.github/workflows/android-build.yml -------------------------------------------------------------------------------- /assets/template/.github/workflows/ios-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/assets/template/.github/workflows/ios-build.yml -------------------------------------------------------------------------------- /assets/template/.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/assets/template/.github/workflows/release.yml -------------------------------------------------------------------------------- /assets/template/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /assets/template/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/assets/template/LICENSE -------------------------------------------------------------------------------- /assets/template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/assets/template/README.md -------------------------------------------------------------------------------- /assets/template/android/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/assets/template/android/CMakeLists.txt -------------------------------------------------------------------------------- /assets/template/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/assets/template/android/build.gradle -------------------------------------------------------------------------------- /assets/template/android/fix-prefab.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/assets/template/android/fix-prefab.gradle -------------------------------------------------------------------------------- /assets/template/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/assets/template/android/gradle.properties -------------------------------------------------------------------------------- /assets/template/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/assets/template/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /assets/template/android/src/main/cpp/cpp-adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/assets/template/android/src/main/cpp/cpp-adapter.cpp -------------------------------------------------------------------------------- /assets/template/android/src/main/java/com/$$androidNamespace$$/$$androidCxxLibName$$Package.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/assets/template/android/src/main/java/com/$$androidNamespace$$/$$androidCxxLibName$$Package.kt -------------------------------------------------------------------------------- /assets/template/android/src/main/java/com/$$androidNamespace$$/$$androidCxxLibName$$Package_view.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/assets/template/android/src/main/java/com/$$androidNamespace$$/$$androidCxxLibName$$Package_view.kt -------------------------------------------------------------------------------- /assets/template/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/assets/template/babel.config.js -------------------------------------------------------------------------------- /assets/template/bunfig.toml: -------------------------------------------------------------------------------- 1 | [install] 2 | linker = "hoisted" 3 | -------------------------------------------------------------------------------- /assets/template/cpp/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/template/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/assets/template/gitignore -------------------------------------------------------------------------------- /assets/template/ios/Bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/assets/template/ios/Bridge.h -------------------------------------------------------------------------------- /assets/template/nitro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/assets/template/nitro.json -------------------------------------------------------------------------------- /assets/template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/assets/template/package.json -------------------------------------------------------------------------------- /assets/template/release.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/assets/template/release.config.cjs -------------------------------------------------------------------------------- /assets/template/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/assets/template/tsconfig.json -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/bun.lock -------------------------------------------------------------------------------- /bunfig.toml: -------------------------------------------------------------------------------- 1 | [install] 2 | linker = "hoisted" 3 | -------------------------------------------------------------------------------- /commitlint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/commitlint.config.cjs -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/docs/bun.lockb -------------------------------------------------------------------------------- /docs/docs/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/docs/docs/commands.md -------------------------------------------------------------------------------- /docs/docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/docs/docs/intro.md -------------------------------------------------------------------------------- /docs/docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/docs/docs/troubleshooting.md -------------------------------------------------------------------------------- /docs/docs/usage/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/docs/docs/usage/_category_.json -------------------------------------------------------------------------------- /docs/docs/usage/create-a-nitro-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/docs/docs/usage/create-a-nitro-module.md -------------------------------------------------------------------------------- /docs/docs/usage/create-an-app-with-nitro-module-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/docs/docs/usage/create-an-app-with-nitro-module-setup.md -------------------------------------------------------------------------------- /docs/docs/usage/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/docs/docs/usage/installation.md -------------------------------------------------------------------------------- /docs/docusaurus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/docs/docusaurus.config.ts -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/docs/sidebars.ts -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/docs/src/components/HomepageFeatures/index.tsx -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/docs/src/components/HomepageFeatures/styles.module.css -------------------------------------------------------------------------------- /docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/docs/src/css/custom.css -------------------------------------------------------------------------------- /docs/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/docs/src/pages/index.module.css -------------------------------------------------------------------------------- /docs/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/docs/src/pages/index.tsx -------------------------------------------------------------------------------- /docs/src/pages/markdown-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/docs/src/pages/markdown-page.md -------------------------------------------------------------------------------- /docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/docs/static/img/favicon.ico -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/docs/static/img/undraw_docusaurus_mountain.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/docs/static/img/undraw_docusaurus_react.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/docs/static/img/undraw_docusaurus_tree.svg -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /e2e-tests/module.e2e.yaml: -------------------------------------------------------------------------------- 1 | appId: ${APP_ID} 2 | --- 3 | - launchApp 4 | - assertVisible: '3' 5 | -------------------------------------------------------------------------------- /e2e-tests/view.e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/e2e-tests/view.e2e.yaml -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/eslint.config.js -------------------------------------------------------------------------------- /lefthook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/lefthook.yml -------------------------------------------------------------------------------- /ncli.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/ncli.tape -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/package.json -------------------------------------------------------------------------------- /release.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/release.config.cjs -------------------------------------------------------------------------------- /scripts/e2e-maestro.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/scripts/e2e-maestro.sh -------------------------------------------------------------------------------- /src/cli/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/src/cli/create.ts -------------------------------------------------------------------------------- /src/cli/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/src/cli/index.ts -------------------------------------------------------------------------------- /src/code-snippets/code.cpp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/src/code-snippets/code.cpp.ts -------------------------------------------------------------------------------- /src/code-snippets/code.js.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/src/code-snippets/code.js.ts -------------------------------------------------------------------------------- /src/code-snippets/code.kotlin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/src/code-snippets/code.kotlin.ts -------------------------------------------------------------------------------- /src/code-snippets/code.swift.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/src/code-snippets/code.swift.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/file-generators/android-file-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/src/file-generators/android-file-generator.ts -------------------------------------------------------------------------------- /src/file-generators/cpp-file-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/src/file-generators/cpp-file-generator.ts -------------------------------------------------------------------------------- /src/file-generators/ios-file-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/src/file-generators/ios-file-generator.ts -------------------------------------------------------------------------------- /src/file-generators/js-file-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/src/file-generators/js-file-generator.ts -------------------------------------------------------------------------------- /src/generate-nitro-package.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/src/generate-nitro-package.ts -------------------------------------------------------------------------------- /src/nitro-spinner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/src/nitro-spinner.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/src/utils.ts -------------------------------------------------------------------------------- /test-local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/test-local.sh -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickkabwe/create-nitro-module/HEAD/tsup.config.ts --------------------------------------------------------------------------------