{
  "name": "@patina/std",
  "version": "0.1.1",
  "type": "module",
  "description": "Type-safe nothing-handling and error-handling library",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/bkiac/patina.git"
  },
  "author": "bkiac <bkiac@pm.me>",
  "license": "MIT",
  "main": "./lib/index.cjs",
  "module": "./lib/index.js",
  "exports": {
    ".": {
      "types": "./lib/index.d.ts",
      "require": "./lib/index.cjs",
      "import": "./lib/index.js"
    },
    "./package.json": "./package.json"
  },
  "types": "./lib/index.d.ts",
  "files": [
    "lib"
  ],
  "keywords": [
    "typescript",
    "error-handling",
    "option-type",
    "result-type"
  ],
  "devDependencies": {
    "@types/node": "20.11.30",
    "@vitest/browser": "1.4.0",
    "husky": "8.0.3",
    "lint-staged": "14.0.1",
    "playwright": "1.42.1",
    "prettier": "3.0.2",
    "prettier-plugin-pkg": "0.18.0",
    "tsup": "7.2.0",
    "tsx": "3.14.0",
    "typescript": "5.0.4",
    "vitest": "1.4.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "sideEffects": false,
  "lint-staged": {
    "*.{ts,yaml,json,md}": "prettier --write"
  },
  "prettier": {
    "plugins": [
      "prettier-plugin-pkg"
    ],
    "arrowParens": "always",
    "bracketSameLine": false,
    "bracketSpacing": false,
    "endOfLine": "lf",
    "htmlWhitespaceSensitivity": "css",
    "jsxSingleQuote": false,
    "printWidth": 100,
    "proseWrap": "preserve",
    "quoteProps": "as-needed",
    "semi": true,
    "singleQuote": false,
    "tabWidth": 4,
    "trailingComma": "all",
    "useTabs": true
  },
  "scripts": {
    "benchmark": "tsx ./scripts/benchmark.ts",
    "build": "tsup --config ./cfg/tsup.config.ts && pnpm build:ts",
    "build:ts": "tsc --p ./cfg/tsconfig.types.json",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "test:browser": "vitest --config ./cfg/vitest.browser.config.ts",
    "test:node": "vitest --config ./cfg/vitest.config.ts",
    "test:ts": "tsc --project ./cfg/tsconfig.test.json",
    "ts:check": "tsc"
  }
}