├── .eslintrc.json ├── .gitignore ├── README.md ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── javascript.tmLanguage.json ├── jsx.tmLanguage.json ├── logo.png ├── next.svg ├── onigasm.wasm ├── tsx.tmLanguage.json ├── typescript.tmLanguage.json └── vercel.svg ├── src ├── app │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ ├── page.tsx │ └── providers.tsx ├── components │ ├── InlineInput.tsx │ ├── Overlay.tsx │ ├── StatusBadge.tsx │ ├── editor │ │ ├── AutoImportFile.tsx │ │ ├── DeclarationFile.tsx │ │ ├── auto-import │ │ │ ├── auto-complete │ │ │ │ ├── import-action.ts │ │ │ │ ├── import-completion.ts │ │ │ │ ├── import-db.ts │ │ │ │ ├── import-fixer.ts │ │ │ │ ├── index.ts │ │ │ │ └── util │ │ │ │ │ └── kind-resolution.ts │ │ │ ├── index.ts │ │ │ └── parser │ │ │ │ ├── index.ts │ │ │ │ ├── regex.ts │ │ │ │ └── util.ts │ │ ├── define-theme.ts │ │ ├── editor.tsx │ │ ├── initialize-monaco.ts │ │ ├── models.tsx │ │ ├── react.d.ts │ │ ├── utils.ts │ │ └── vs-dark-plus.ts │ ├── icons │ │ ├── FileIcon.tsx │ │ ├── FolderClosed.tsx │ │ └── FolderOpen.tsx │ └── projects │ │ ├── AppTabs.tsx │ │ ├── BuildStatus.tsx │ │ ├── EditorTabs.tsx │ │ ├── ExamplePreview.tsx │ │ ├── File.tsx │ │ ├── Folder.tsx │ │ ├── FsMenu.tsx │ │ ├── NodeModules.tsx │ │ ├── PackageImports.tsx │ │ ├── PreviewTabs.tsx │ │ ├── ProjectEditor.tsx │ │ ├── ProjectPage.tsx │ │ ├── ProjectProvider.tsx │ │ ├── Sidebar.tsx │ │ ├── SyncCompilerOptions.tsx │ │ └── TestsPreview.tsx ├── lib │ ├── async.ts │ └── utils.ts ├── state │ ├── app.ts │ ├── example.ts │ ├── fs.ts │ ├── library.ts │ ├── project.ts │ ├── runners │ │ ├── emulator-files.ts │ │ ├── emulator.ts │ │ ├── example.ts │ │ ├── library.ts │ │ ├── runner.ts │ │ └── tests.ts │ ├── terminal.ts │ ├── tests.ts │ └── types.ts ├── templates │ ├── example │ │ ├── index.ts │ │ └── react │ │ │ ├── files │ │ │ ├── .eslintrc.cjs │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── index.html │ │ │ ├── package.json │ │ │ ├── public │ │ │ │ └── vite.svg │ │ │ ├── src │ │ │ │ ├── App.tsx │ │ │ │ ├── index.css │ │ │ │ ├── main.tsx │ │ │ │ └── vite-env.d.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.ts │ │ │ └── index.ts │ ├── index.ts │ ├── library │ │ ├── index.ts │ │ ├── react │ │ │ ├── files │ │ │ │ ├── .gitignore │ │ │ │ ├── globals.d.ts │ │ │ │ ├── index.tsx │ │ │ │ ├── package.json │ │ │ │ ├── rollup.config.mjs │ │ │ │ ├── styles.module.css │ │ │ │ └── tsconfig.json │ │ │ └── index.ts │ │ └── typescript │ │ │ ├── files │ │ │ ├── .gitignore │ │ │ ├── add.ts │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ ├── rollup.config.mjs │ │ │ ├── subtract.ts │ │ │ └── tsconfig.json │ │ │ └── index.ts │ ├── tests │ │ ├── index.ts │ │ └── react │ │ │ ├── files │ │ │ ├── README.md │ │ │ ├── output.json │ │ │ ├── package.json │ │ │ ├── tests │ │ │ │ └── browser.test.ts │ │ │ ├── tsconfig.json │ │ │ └── vite.config.ts │ │ │ └── index.ts │ └── utils.ts └── theme │ ├── components │ ├── Box.ts │ ├── Button.ts │ ├── CloseButton.ts │ ├── HStack.ts │ ├── Stack.ts │ └── Tabs.ts │ └── index.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/README.md -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/javascript.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/public/javascript.tmLanguage.json -------------------------------------------------------------------------------- /public/jsx.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/public/jsx.tmLanguage.json -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/onigasm.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/public/onigasm.wasm -------------------------------------------------------------------------------- /public/tsx.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/public/tsx.tmLanguage.json -------------------------------------------------------------------------------- /public/typescript.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/public/typescript.tmLanguage.json -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/app/providers.tsx -------------------------------------------------------------------------------- /src/components/InlineInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/InlineInput.tsx -------------------------------------------------------------------------------- /src/components/Overlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/Overlay.tsx -------------------------------------------------------------------------------- /src/components/StatusBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/StatusBadge.tsx -------------------------------------------------------------------------------- /src/components/editor/AutoImportFile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/editor/AutoImportFile.tsx -------------------------------------------------------------------------------- /src/components/editor/DeclarationFile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/editor/DeclarationFile.tsx -------------------------------------------------------------------------------- /src/components/editor/auto-import/auto-complete/import-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/editor/auto-import/auto-complete/import-action.ts -------------------------------------------------------------------------------- /src/components/editor/auto-import/auto-complete/import-completion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/editor/auto-import/auto-complete/import-completion.ts -------------------------------------------------------------------------------- /src/components/editor/auto-import/auto-complete/import-db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/editor/auto-import/auto-complete/import-db.ts -------------------------------------------------------------------------------- /src/components/editor/auto-import/auto-complete/import-fixer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/editor/auto-import/auto-complete/import-fixer.ts -------------------------------------------------------------------------------- /src/components/editor/auto-import/auto-complete/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/editor/auto-import/auto-complete/index.ts -------------------------------------------------------------------------------- /src/components/editor/auto-import/auto-complete/util/kind-resolution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/editor/auto-import/auto-complete/util/kind-resolution.ts -------------------------------------------------------------------------------- /src/components/editor/auto-import/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/editor/auto-import/index.ts -------------------------------------------------------------------------------- /src/components/editor/auto-import/parser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/editor/auto-import/parser/index.ts -------------------------------------------------------------------------------- /src/components/editor/auto-import/parser/regex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/editor/auto-import/parser/regex.ts -------------------------------------------------------------------------------- /src/components/editor/auto-import/parser/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/editor/auto-import/parser/util.ts -------------------------------------------------------------------------------- /src/components/editor/define-theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/editor/define-theme.ts -------------------------------------------------------------------------------- /src/components/editor/editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/editor/editor.tsx -------------------------------------------------------------------------------- /src/components/editor/initialize-monaco.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/editor/initialize-monaco.ts -------------------------------------------------------------------------------- /src/components/editor/models.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/editor/models.tsx -------------------------------------------------------------------------------- /src/components/editor/react.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/editor/react.d.ts -------------------------------------------------------------------------------- /src/components/editor/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/editor/utils.ts -------------------------------------------------------------------------------- /src/components/editor/vs-dark-plus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/editor/vs-dark-plus.ts -------------------------------------------------------------------------------- /src/components/icons/FileIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/icons/FileIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/FolderClosed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/icons/FolderClosed.tsx -------------------------------------------------------------------------------- /src/components/icons/FolderOpen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/icons/FolderOpen.tsx -------------------------------------------------------------------------------- /src/components/projects/AppTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/projects/AppTabs.tsx -------------------------------------------------------------------------------- /src/components/projects/BuildStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/projects/BuildStatus.tsx -------------------------------------------------------------------------------- /src/components/projects/EditorTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/projects/EditorTabs.tsx -------------------------------------------------------------------------------- /src/components/projects/ExamplePreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/projects/ExamplePreview.tsx -------------------------------------------------------------------------------- /src/components/projects/File.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/projects/File.tsx -------------------------------------------------------------------------------- /src/components/projects/Folder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/projects/Folder.tsx -------------------------------------------------------------------------------- /src/components/projects/FsMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/projects/FsMenu.tsx -------------------------------------------------------------------------------- /src/components/projects/NodeModules.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/projects/NodeModules.tsx -------------------------------------------------------------------------------- /src/components/projects/PackageImports.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/projects/PackageImports.tsx -------------------------------------------------------------------------------- /src/components/projects/PreviewTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/projects/PreviewTabs.tsx -------------------------------------------------------------------------------- /src/components/projects/ProjectEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/projects/ProjectEditor.tsx -------------------------------------------------------------------------------- /src/components/projects/ProjectPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/projects/ProjectPage.tsx -------------------------------------------------------------------------------- /src/components/projects/ProjectProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/projects/ProjectProvider.tsx -------------------------------------------------------------------------------- /src/components/projects/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/projects/Sidebar.tsx -------------------------------------------------------------------------------- /src/components/projects/SyncCompilerOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/projects/SyncCompilerOptions.tsx -------------------------------------------------------------------------------- /src/components/projects/TestsPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/components/projects/TestsPreview.tsx -------------------------------------------------------------------------------- /src/lib/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/lib/async.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/state/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/state/app.ts -------------------------------------------------------------------------------- /src/state/example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/state/example.ts -------------------------------------------------------------------------------- /src/state/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/state/fs.ts -------------------------------------------------------------------------------- /src/state/library.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/state/library.ts -------------------------------------------------------------------------------- /src/state/project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/state/project.ts -------------------------------------------------------------------------------- /src/state/runners/emulator-files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/state/runners/emulator-files.ts -------------------------------------------------------------------------------- /src/state/runners/emulator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/state/runners/emulator.ts -------------------------------------------------------------------------------- /src/state/runners/example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/state/runners/example.ts -------------------------------------------------------------------------------- /src/state/runners/library.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/state/runners/library.ts -------------------------------------------------------------------------------- /src/state/runners/runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/state/runners/runner.ts -------------------------------------------------------------------------------- /src/state/runners/tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/state/runners/tests.ts -------------------------------------------------------------------------------- /src/state/terminal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/state/terminal.ts -------------------------------------------------------------------------------- /src/state/tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/state/tests.ts -------------------------------------------------------------------------------- /src/state/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/state/types.ts -------------------------------------------------------------------------------- /src/templates/example/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/templates/example/index.ts -------------------------------------------------------------------------------- /src/templates/example/react/files/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/templates/example/react/files/.eslintrc.cjs -------------------------------------------------------------------------------- /src/templates/example/react/files/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/templates/example/react/files/.gitignore -------------------------------------------------------------------------------- /src/templates/example/react/files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/templates/example/react/files/README.md -------------------------------------------------------------------------------- /src/templates/example/react/files/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/templates/example/react/files/index.html -------------------------------------------------------------------------------- /src/templates/example/react/files/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/templates/example/react/files/package.json -------------------------------------------------------------------------------- /src/templates/example/react/files/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/templates/example/react/files/public/vite.svg -------------------------------------------------------------------------------- /src/templates/example/react/files/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/templates/example/react/files/src/App.tsx -------------------------------------------------------------------------------- /src/templates/example/react/files/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/templates/example/react/files/src/index.css -------------------------------------------------------------------------------- /src/templates/example/react/files/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/templates/example/react/files/src/main.tsx -------------------------------------------------------------------------------- /src/templates/example/react/files/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/templates/example/react/files/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/templates/example/react/files/tsconfig.json -------------------------------------------------------------------------------- /src/templates/example/react/files/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/templates/example/react/files/tsconfig.node.json -------------------------------------------------------------------------------- /src/templates/example/react/files/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/templates/example/react/files/vite.config.ts -------------------------------------------------------------------------------- /src/templates/example/react/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/templates/example/react/index.ts -------------------------------------------------------------------------------- /src/templates/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/templates/index.ts -------------------------------------------------------------------------------- /src/templates/library/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/templates/library/index.ts -------------------------------------------------------------------------------- /src/templates/library/react/files/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/templates/library/react/files/.gitignore -------------------------------------------------------------------------------- /src/templates/library/react/files/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/templates/library/react/files/globals.d.ts -------------------------------------------------------------------------------- /src/templates/library/react/files/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/templates/library/react/files/index.tsx -------------------------------------------------------------------------------- /src/templates/library/react/files/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/templates/library/react/files/package.json -------------------------------------------------------------------------------- /src/templates/library/react/files/rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/templates/library/react/files/rollup.config.mjs -------------------------------------------------------------------------------- /src/templates/library/react/files/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/templates/library/react/files/styles.module.css -------------------------------------------------------------------------------- /src/templates/library/react/files/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/templates/library/react/files/tsconfig.json -------------------------------------------------------------------------------- /src/templates/library/react/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/templates/library/react/index.ts -------------------------------------------------------------------------------- /src/templates/library/typescript/files/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/templates/library/typescript/files/.gitignore -------------------------------------------------------------------------------- /src/templates/library/typescript/files/add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/templates/library/typescript/files/add.ts -------------------------------------------------------------------------------- /src/templates/library/typescript/files/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/templates/library/typescript/files/index.ts -------------------------------------------------------------------------------- /src/templates/library/typescript/files/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/templates/library/typescript/files/package.json -------------------------------------------------------------------------------- /src/templates/library/typescript/files/rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/templates/library/typescript/files/rollup.config.mjs -------------------------------------------------------------------------------- /src/templates/library/typescript/files/subtract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/templates/library/typescript/files/subtract.ts -------------------------------------------------------------------------------- /src/templates/library/typescript/files/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/templates/library/typescript/files/tsconfig.json -------------------------------------------------------------------------------- /src/templates/library/typescript/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/templates/library/typescript/index.ts -------------------------------------------------------------------------------- /src/templates/tests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/templates/tests/index.ts -------------------------------------------------------------------------------- /src/templates/tests/react/files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/templates/tests/react/files/README.md -------------------------------------------------------------------------------- /src/templates/tests/react/files/output.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/templates/tests/react/files/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/templates/tests/react/files/package.json -------------------------------------------------------------------------------- /src/templates/tests/react/files/tests/browser.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/templates/tests/react/files/tests/browser.test.ts -------------------------------------------------------------------------------- /src/templates/tests/react/files/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/templates/tests/react/files/tsconfig.json -------------------------------------------------------------------------------- /src/templates/tests/react/files/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/templates/tests/react/files/vite.config.ts -------------------------------------------------------------------------------- /src/templates/tests/react/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/templates/tests/react/index.ts -------------------------------------------------------------------------------- /src/templates/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/templates/utils.ts -------------------------------------------------------------------------------- /src/theme/components/Box.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/theme/components/Box.ts -------------------------------------------------------------------------------- /src/theme/components/Button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/theme/components/Button.ts -------------------------------------------------------------------------------- /src/theme/components/CloseButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/theme/components/CloseButton.ts -------------------------------------------------------------------------------- /src/theme/components/HStack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/theme/components/HStack.ts -------------------------------------------------------------------------------- /src/theme/components/Stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/theme/components/Stack.ts -------------------------------------------------------------------------------- /src/theme/components/Tabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/theme/components/Tabs.ts -------------------------------------------------------------------------------- /src/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/src/theme/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malerba118/pkgbox/HEAD/tsconfig.json --------------------------------------------------------------------------------