├── .gitignore ├── LICENSE ├── README.md ├── bin └── mpl.js ├── package.json ├── src ├── about.ts ├── index.ts ├── mpl │ ├── electron.ts │ ├── extension.ts │ ├── github.ts │ ├── mini.ts │ ├── tauri.ts │ ├── wasm.ts │ └── web.ts ├── types.ts └── utils.ts ├── tsconfig.json └── tsup.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-mpl/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-mpl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-mpl/HEAD/README.md -------------------------------------------------------------------------------- /bin/mpl.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | require('..'); -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-mpl/HEAD/package.json -------------------------------------------------------------------------------- /src/about.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-mpl/HEAD/src/about.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-mpl/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/mpl/electron.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-mpl/HEAD/src/mpl/electron.ts -------------------------------------------------------------------------------- /src/mpl/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-mpl/HEAD/src/mpl/extension.ts -------------------------------------------------------------------------------- /src/mpl/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-mpl/HEAD/src/mpl/github.ts -------------------------------------------------------------------------------- /src/mpl/mini.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-mpl/HEAD/src/mpl/mini.ts -------------------------------------------------------------------------------- /src/mpl/tauri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-mpl/HEAD/src/mpl/tauri.ts -------------------------------------------------------------------------------- /src/mpl/wasm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-mpl/HEAD/src/mpl/wasm.ts -------------------------------------------------------------------------------- /src/mpl/web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-mpl/HEAD/src/mpl/web.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-mpl/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-mpl/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-mpl/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lencx/create-mpl/HEAD/tsup.config.ts --------------------------------------------------------------------------------