{"library":"paquet-bundler","title":"Paquet","description":"Paquet is a simple JavaScript module bundler that supports both ESM `import` and CommonJS `require` statements, and bundles `node_modules` as well. As of version 0.0.2, it is in early development with limited features. It offers a CLI interface for quick bundling and supports a configuration file (`paquet.config.js`), environment variable injection, and mutator functions for code transformation before or after ES6-to-ES5 transpilation. Plugins are planned but not yet implemented. Suitable for small projects or learning, it is not production-ready.","language":"javascript","status":"active","last_verified":"Sat Apr 25","install":{"commands":["npm install paquet-bundler"],"cli":{"name":"paquet","version":null}},"imports":["npx paquet --entry src/index.js --out dist/bundle.js","module.exports = { entry: 'src/index.js', out: 'dist/bundle.js' };","mutators: [ { before: (code) => code, after: (code) => code } ]"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"// Create entry file src/index.js\nconsole.log('Hello from Paquet!');\n\n// In terminal, run:\n// npx paquet --entry src/index.js --out dist/bundle.js\n\n// Output dist/bundle.js will contain the bundled code.","lang":"javascript","description":"Shows basic CLI usage: bundle a simple entry file to an output file.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}