@node-minify/uglify-js
Version:
uglify-js plugin for @node-minify
63 lines (62 loc) • 1.5 kB
JSON
{
"name": "@node-minify/uglify-js",
"version": "10.5.0",
"description": "uglify-js plugin for @node-minify",
"keywords": [
"compressor",
"minify",
"minifier",
"uglify-js"
],
"author": "Rodolphe Stoclin <srodolphe@gmail.com>",
"homepage": "https://github.com/srod/node-minify/tree/main/packages/uglify-js#readme",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"directories": {
"lib": "dist",
"test": "__tests__"
},
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"sideEffects": false,
"files": [
"dist/**/*"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/srod/node-minify.git"
},
"bugs": {
"url": "https://github.com/srod/node-minify/issues"
},
"scripts": {
"build": "tsdown src/index.ts",
"check-exports": "attw --pack . --profile esm-only",
"format:check": "biome check .",
"lint": "biome lint .",
"prepublishOnly": "bun run build",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"dev": "tsdown src/index.ts --watch"
},
"dependencies": {
"@node-minify/utils": "10.5.0",
"uglify-js": "3.19.3"
},
"devDependencies": {
"@node-minify/types": "10.5.0",
"@types/uglify-js": "^3.17.5"
}
}