{
  "name": "@krakenjs/webpack-mem-compile",
  "version": "3.0.0",
  "description": "Webpack compile to memory",
  "main": "dist/index.js",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "sideEffects": false,
  "scripts": {
    "build": "npm run test && npm run babel && npm run build:types",
    "build:flow": "find ./dist -type f -not -path './node_modules/*' -name '*.d.ts' -exec sh -c 'flowgen --add-flow-header $1 -o ${1%.*.*}.js.flow' _ '{}' \\;",
    "build:tsc": "tsc src/* --outDir ./dist --declaration --emitDeclarationOnly --strict --esModuleInterop",
    "build:types": "npm run build:tsc && npm run build:flow",
    "babel": "cross-env NODE_ENV=production babel src/ --out-dir ./dist/ --extensions .ts,.tsx",
    "tsc": "tsc",
    "format": "prettier --write --ignore-unknown .",
    "format:check": "prettier --check .",
    "test": "npm run format:check && npm run lint && npm run tsc --no-emit && npm run vitest",
    "lint": "eslint --ext ts,tsx,js,jsx src/ test/",
    "clean": "rimraf dist coverage",
    "prerelease": "npm run clean && npm run build && git add dist && git commit -m 'ci: check in dist folder' || echo 'Nothing to distribute'",
    "release": "standard-version",
    "postrelease": "git push && git push --follow-tags && npm publish",
    "debug": "cross-env NODE_ENV=debug",
    "prepare": "husky install",
    "vitest": "vitest run --dom --coverage",
    "vitest:watch": "vitest watch --dom --coverage --ui"
  },
  "standard-version": {
    "types": [
      {
        "type": "feat",
        "section": "Features"
      },
      {
        "type": "fix",
        "section": "Bug Fixes"
      },
      {
        "type": "chore",
        "hidden": false
      },
      {
        "type": "docs",
        "hidden": false
      },
      {
        "type": "style",
        "hidden": false
      },
      {
        "type": "refactor",
        "hidden": false
      },
      {
        "type": "perf",
        "hidden": false
      },
      {
        "type": "test",
        "hidden": false
      },
      {
        "type": "ci",
        "hidden": true
      }
    ]
  },
  "repository": {
    "type": "git",
    "url": "git@github.com:krakenjs/webpack-mem-compile.git"
  },
  "author": "dbrain",
  "license": "Apache-2.0",
  "engines": {
    "node": ">= 14"
  },
  "devDependencies": {
    "@commitlint/cli": "^17.3.0",
    "@commitlint/config-conventional": "^17.3.0",
    "@krakenjs/babel-config-grumbler": "^8.1.0",
    "@krakenjs/eslint-config-grumbler": "^8.1.0",
    "@krakenjs/typescript-config-grumbler": "^8.1.0",
    "@krakenjs/webpack-config-grumbler": "^8.1.0",
    "@types/fs-extra": "^9.0.13",
    "@types/memory-fs": "^0.3.3",
    "@types/uuid": "^8.3.4",
    "@vitest/coverage-c8": "^0.25.3",
    "@vitest/ui": "^0.25.3",
    "cross-env": "^7.0.3",
    "flowgen": "^1.20.1",
    "happy-dom": "^7.7.0",
    "husky": "^8.0.2",
    "lint-staged": "^13.0.3",
    "prettier": "2.8.0",
    "standard-version": "^9.5.0",
    "ts-node": "^10.9.1",
    "typescript": "4.9.3",
    "vite": "^3.2.4",
    "vitest": "0.25.3"
  },
  "dependencies": {
    "@types/webpack": "^5.28.0",
    "fs-extra": "^7.0.1",
    "memory-fs": "^0.5.0",
    "uuid": "^3.3.2"
  },
  "lint-staged": {
    "*": "prettier --write --ignore-unknown"
  }
}
