UNPKG

@node-minify/core

Version:
60 lines 1.39 kB
{ "name": "@node-minify/core", "version": "9.0.2", "description": "core of @node-minify", "keywords": [ "compressor", "minify", "minifier" ], "author": "Rodolphe Stoclin <srodolphe@gmail.com>", "homepage": "https://github.com/srod/node-minify/tree/master/packages/core#readme", "license": "MIT", "engines": { "node": ">=18.0.0" }, "directories": { "lib": "dist", "test": "__tests__" }, "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.js" } }, "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" }, "dependencies": { "glob": "10.3.3", "mkdirp": "3.0.1", "@node-minify/utils": "9.0.1" }, "devDependencies": { "@types/mkdirp": "^1.0.2", "@node-minify/types": "9.0.0" }, "scripts": { "clean": "pnpm dlx rimraf dist", "build": "pnpm clean && tsup src/index.ts --format cjs,esm --dts --clean --sourcemap", "lint": "biome lint .", "test": "vitest run", "test:ci": "vitest run --coverage", "test:watch": "vitest" } }