UNPKG

quickbundle

Version:

The zero-configuration transpiler and bundler for the web

73 lines 1.67 kB
{ "name": "quickbundle", "version": "2.14.0", "description": "The zero-configuration transpiler and bundler for the web", "keywords": [ "library", "bundle", "build", "compiler", "transpiler", "module", "fast", "esbuild", "swc", "microbundle" ], "repository": { "type": "git", "url": "git@github.com:adbayb/quickbundle.git", "directory": "quickbundle" }, "license": "MIT", "author": { "name": "Ayoub Adib", "email": "adbayb@gmail.com", "url": "https://twitter.com/adbayb" }, "type": "module", "exports": { ".": { "source": "./src/index.ts", "default": "./dist/index.js" } }, "bin": { "quickbundle": "./bin/index.js" }, "files": [ "bin", "dist" ], "dependencies": { "@rollup/plugin-commonjs": "^28.0.6", "@rollup/plugin-json": "^6.1.0", "@rollup/plugin-node-resolve": "^16.0.1", "@rollup/plugin-url": "^8.0.2", "@swc/core": "^1.13.5", "decompress": "^4.2.1", "gzip-size": "^7.0.0", "rollup": "^4.48.0", "rollup-plugin-dts": "^6.2.3", "rollup-plugin-node-externals": "^8.1.0", "rollup-plugin-swc3": "^0.12.1", "termost": "^1.8.0" }, "devDependencies": { "@types/decompress": "4.2.7", "@types/node": "22.17.2" }, "peerDependencies": { "typescript": "^4.7.0 || ^5.0.0" }, "peerDependenciesMeta": { "typescript": { "optional": true } }, "scripts": { "build": "rollup --config ./bundler.config.ts --configPlugin rollup-plugin-swc3", "test": "exit 0", "watch": "rollup --watch --config ./bundler.config.ts --configPlugin rollup-plugin-swc3" } }