{
  "name": "@commandville/transform",
  "version": "0.3.0",
  "description": "utility for creating Node transform streams.",
  "type": "module",
  "main": "./dist/esm/index.js",
  "module": "./dist/esm/index.js",
  "types": "./dist/types/index.d.ts",
  "publishConfig": {
    "types": "./dist/types/transform.d.ts"
  },
  "exports": {
    ".": "./dist/esm/index.js",
    "./package.json": "./package.json"
  },
  "engines": {
    "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
  },
  "files": [
    "dist/",
    "LICENSE",
    "README.md"
  ],
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "clean": "shx rm -rf dist",
    "typecheck": "tsc --noEmit",
    "build:types": "tsc --emitDeclarationOnly",
    "build:esm": "swc ./src --config-file ../../.swcrc -d ./dist/esm",
    "build": "NODE_ENV=production run-p build:types build:esm",
    "apiReport:run": "api-extractor run",
    "apiReport:check": "run-s build:types apiReport:run",
    "apiReport:generate": "run-s build:types \"apiReport:run -- --local\"",
    "start": "NODE_ENV=development run-p \"build:types -- -w\" \"build:esm -- -w\""
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/dworthen/commandville.git"
  },
  "keywords": [
    "transform",
    "streams"
  ],
  "author": "Derek Worthen <worthend.derek@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/dworthen/commandville/issues"
  },
  "homepage": "https://github.com/dworthen/commandville#readme",
  "devDependencies": {
    "@jsdevtools/npm-publish": "^1.4.3",
    "@microsoft/api-extractor": "^7.18.1",
    "@swc/cli": "^0.1.55",
    "@swc/core": "^1.2.130",
    "@types/node": "^15.12.5",
    "npm-run-all": "^4.1.5",
    "shx": "^0.3.3",
    "typescript": "^4.3.4"
  }
}
