{
  "name": "less-watch-compiler",
  "version": "1.17.5",
  "description": "A command that watches folders(and subfolders) for file changes and automatically compile the less css files into css. This is a file system watcher and compiler.",
  "main": "dist/less-watch-compiler.js",
  "directories": {
    "test": "tests"
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "test": "yarn run build && yarn run clean && npx mocha --exit",
    "postversion": "git push && git push --tags",
    "clean": "rm -R ./test/css || true && mkdir ./test/css",
    "prepublishOnly": "yarn run build",
    "commit": "git-cz -n",
    "build": "tsc -p tsconfig.json",
    "start": "yarn run build && node ./dist/less-watch-compiler.js"
  },
  "repository": {
    "url": "https://github.com/jonycheung/deadsimple-less-watch-compiler.git",
    "type": "git"
  },
  "bin": {
    "less-watch-compiler": "dist/less-watch-compiler.js"
  },
  "dependencies": {
    "amdefine": ">= 0.1.0",
    "commander": "^8.0.0",
    "extend": ">= 2.0.0",
    "global": "^4.3.1",
    "less": "^4.0.0",
    "strip-ansi": "^6.0.1",
    "string-width": "^4.2.3",
    "shelljs": "^0.8.5"
  },
  "engines": {
    "node": ">=18"
  },
  "devDependencies": {
    "@types/extend": "^3.0.4",
    "@types/node": "^20.11.17",
    "@types/shelljs": "^0.8.15",
    "cz-conventional-changelog": "3.3.0",
    "mocha": "^11.7.5",
    "strip-ansi": "^6.0.1",
    "typescript": "^5.6.2",
    "wrap-ansi": "^7.0.0"
  },
  "preferGlobal": true,
  "keywords": [
    "less",
    "lessc",
    "compiler",
    "file system",
    "watcher",
    "watch",
    "compile",
    "folder",
    "directory",
    "files",
    "css"
  ],
  "author": "Jony Cheung",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/jonycheung/deadsimple-less-watch-compiler/issues"
  },
  "homepage": "https://github.com/jonycheung/deadsimple-less-watch-compiler",
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "collective": {
    "type": "opencollective",
    "url": "https://opencollective.com/less-watch-compiler"
  },
  "resolutions": {
    "shelljs": "0.8.5",
    "glob": "10.3.10",
    "cliui": "7.0.4"
  }
}
