@node-minify/run
Version:
exec commands for @node-minify
55 lines • 1.28 kB
JSON
{
"name": "@node-minify/run",
"version": "9.0.1",
"description": "exec commands for @node-minify",
"keywords": [
"compressor",
"minify",
"minifier",
"run"
],
"author": "Rodolphe Stoclin <srodolphe@gmail.com>",
"homepage": "https://github.com/srod/node-minify/tree/master/packages/run#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"
},
"devDependencies": {
"@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"
}
}