├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── dependabot.yml ├── .gitignore ├── .idea ├── modules.xml ├── npmax-desktop.iml ├── vcs.xml └── workspace.xml ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── docs ├── dist │ ├── css │ │ └── style.css │ ├── images │ │ ├── coverApp.png │ │ ├── cta-illustration-dark.svg │ │ ├── cta-illustration-light.svg │ │ ├── feature-01-dark.svg │ │ ├── feature-01-light.svg │ │ ├── feature-02-dark.svg │ │ ├── feature-02-light.svg │ │ ├── feature-03-dark.svg │ │ ├── feature-03-light.svg │ │ ├── features-box-dark.svg │ │ ├── features-box-light.svg │ │ ├── features-illustration-dark.svg │ │ ├── features-illustration-light.svg │ │ ├── features-illustration-top-dark.svg │ │ ├── features-illustration-top-light.svg │ │ ├── header-illustration-dark.svg │ │ ├── header-illustration-light.svg │ │ ├── hero-media-dark.svg │ │ ├── hero-media-illustration-dark.svg │ │ ├── hero-media-illustration-light.svg │ │ ├── hero-media-light.svg │ │ ├── logo-dark.svg │ │ ├── logo-light.svg │ │ └── logo.png │ └── js │ │ └── main.min.js └── index.html ├── index.js ├── package.json ├── public ├── build │ ├── bundle.css │ ├── bundle.css.map │ ├── bundle.js │ └── bundle.js.map ├── favicon.png ├── fonts │ ├── Lato-Regular.eot │ ├── Lato-Regular.ttf │ ├── Lato-Regular.woff │ └── Lato-Regular.woff2 ├── global.css ├── icon.icns ├── icon.ico ├── icon.png ├── images │ └── add.png └── index.html ├── rollup.config.js ├── src ├── App.svelte ├── api │ └── index.js ├── components │ ├── SimpleBar.svelte │ ├── main.svelte │ └── sidebar.svelte ├── icons │ ├── npm.svelte │ ├── pnpm.svelte │ └── yarn.svelte ├── main.js ├── store │ └── index.js └── utils │ ├── index.js │ └── shell.js └── yarn.lock /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/npmax-desktop.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/.idea/npmax-desktop.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/SECURITY.md -------------------------------------------------------------------------------- /docs/dist/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/docs/dist/css/style.css -------------------------------------------------------------------------------- /docs/dist/images/coverApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/docs/dist/images/coverApp.png -------------------------------------------------------------------------------- /docs/dist/images/cta-illustration-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/docs/dist/images/cta-illustration-dark.svg -------------------------------------------------------------------------------- /docs/dist/images/cta-illustration-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/docs/dist/images/cta-illustration-light.svg -------------------------------------------------------------------------------- /docs/dist/images/feature-01-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/docs/dist/images/feature-01-dark.svg -------------------------------------------------------------------------------- /docs/dist/images/feature-01-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/docs/dist/images/feature-01-light.svg -------------------------------------------------------------------------------- /docs/dist/images/feature-02-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/docs/dist/images/feature-02-dark.svg -------------------------------------------------------------------------------- /docs/dist/images/feature-02-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/docs/dist/images/feature-02-light.svg -------------------------------------------------------------------------------- /docs/dist/images/feature-03-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/docs/dist/images/feature-03-dark.svg -------------------------------------------------------------------------------- /docs/dist/images/feature-03-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/docs/dist/images/feature-03-light.svg -------------------------------------------------------------------------------- /docs/dist/images/features-box-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/docs/dist/images/features-box-dark.svg -------------------------------------------------------------------------------- /docs/dist/images/features-box-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/docs/dist/images/features-box-light.svg -------------------------------------------------------------------------------- /docs/dist/images/features-illustration-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/docs/dist/images/features-illustration-dark.svg -------------------------------------------------------------------------------- /docs/dist/images/features-illustration-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/docs/dist/images/features-illustration-light.svg -------------------------------------------------------------------------------- /docs/dist/images/features-illustration-top-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/docs/dist/images/features-illustration-top-dark.svg -------------------------------------------------------------------------------- /docs/dist/images/features-illustration-top-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/docs/dist/images/features-illustration-top-light.svg -------------------------------------------------------------------------------- /docs/dist/images/header-illustration-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/docs/dist/images/header-illustration-dark.svg -------------------------------------------------------------------------------- /docs/dist/images/header-illustration-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/docs/dist/images/header-illustration-light.svg -------------------------------------------------------------------------------- /docs/dist/images/hero-media-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/docs/dist/images/hero-media-dark.svg -------------------------------------------------------------------------------- /docs/dist/images/hero-media-illustration-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/docs/dist/images/hero-media-illustration-dark.svg -------------------------------------------------------------------------------- /docs/dist/images/hero-media-illustration-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/docs/dist/images/hero-media-illustration-light.svg -------------------------------------------------------------------------------- /docs/dist/images/hero-media-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/docs/dist/images/hero-media-light.svg -------------------------------------------------------------------------------- /docs/dist/images/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/docs/dist/images/logo-dark.svg -------------------------------------------------------------------------------- /docs/dist/images/logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/docs/dist/images/logo-light.svg -------------------------------------------------------------------------------- /docs/dist/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/docs/dist/images/logo.png -------------------------------------------------------------------------------- /docs/dist/js/main.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/docs/dist/js/main.min.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/docs/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/package.json -------------------------------------------------------------------------------- /public/build/bundle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/public/build/bundle.css -------------------------------------------------------------------------------- /public/build/bundle.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/public/build/bundle.css.map -------------------------------------------------------------------------------- /public/build/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/public/build/bundle.js -------------------------------------------------------------------------------- /public/build/bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/public/build/bundle.js.map -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/fonts/Lato-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/public/fonts/Lato-Regular.eot -------------------------------------------------------------------------------- /public/fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/public/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /public/fonts/Lato-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/public/fonts/Lato-Regular.woff -------------------------------------------------------------------------------- /public/fonts/Lato-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/public/fonts/Lato-Regular.woff2 -------------------------------------------------------------------------------- /public/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/public/global.css -------------------------------------------------------------------------------- /public/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/public/icon.icns -------------------------------------------------------------------------------- /public/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/public/icon.ico -------------------------------------------------------------------------------- /public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/public/icon.png -------------------------------------------------------------------------------- /public/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/public/images/add.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/public/index.html -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/src/App.svelte -------------------------------------------------------------------------------- /src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/src/api/index.js -------------------------------------------------------------------------------- /src/components/SimpleBar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/src/components/SimpleBar.svelte -------------------------------------------------------------------------------- /src/components/main.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/src/components/main.svelte -------------------------------------------------------------------------------- /src/components/sidebar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/src/components/sidebar.svelte -------------------------------------------------------------------------------- /src/icons/npm.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/src/icons/npm.svelte -------------------------------------------------------------------------------- /src/icons/pnpm.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/src/icons/pnpm.svelte -------------------------------------------------------------------------------- /src/icons/yarn.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/src/icons/yarn.svelte -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/src/main.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/src/utils/index.js -------------------------------------------------------------------------------- /src/utils/shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/src/utils/shell.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehdiraized/npmax/HEAD/yarn.lock --------------------------------------------------------------------------------