{
  "name": "@sweet-monads/maybe",
  "version": "3.3.1",
  "description": "",
  "main": "./cjs/index.js",
  "module": "./esm/index.js",
  "exports": {
    "types": "./index.d.ts",
    "import": "./esm/index.js",
    "require": "./cjs/index.js"
  },
  "homepage": "https://github.com/JSMonk/sweet-monads/tree/master/maybe",
  "repository": {
    "type": "git",
    "url": "https://github.com/JSMonk/sweet-monads/tree/master/maybe"
  },
  "scripts": {
    "build": "run-s build:pre build:all build:after",
    "build:clean": "rm -rf build && mkdir build",
    "build:config": "cp ../tsconfig.json tsconfig.json",
    "build:pre": "run-p build:clean build:config",
    "build:esm": "tsc --project ./tsconfig.json --module 'ESNext' --outDir './build/esm'",
    "build:cjs": "tsc --project ./tsconfig.json --module 'CommonJS' --outDir './build/cjs'",
    "build:declaration": "tsc --project ./tsconfig.json --outDir './build' --emitDeclarationOnly",
    "build:all": "run-p build:esm build:cjs build:declaration",
    "build:copy": "cp ./package.json ./build/package.json && cp ./README.md ./build/README.md",
    "build:fixcjs": "echo '{\"type\":\"commonjs\"}' > ./build/cjs/package.json",
    "build:fixesm": "echo '{\"type\":\"module\"}' > ./build/esm/package.json",
    "build:after": "run-p build:copy build:fixcjs build:fixesm"
  },
  "dependencies": {
    "@sweet-monads/interfaces": "^3.3.0"
  },
  "author": "",
  "license": "MIT"
}
