{
  "name": "@safelytyped/core-types",
  "version": "0.5.1",
  "description": "Core safe types for Typescript",
  "repository": "github:SafelyTyped/ts-core-types",
  "main": "lib/cjs/index.js",
  "module": "lib/esm/index.js",
  "types": "lib/types/index.d.ts",
  "scripts": {
    "build": "npm run clean && tsc -b ./tsconfig-cjs.json ./tsconfig-esm.json ./tsconfig-types.json",
    "lint": "npx eslint .",
    "prepublishOnly": "npm run test",
    "prepack": "npm run build && npm run lint && rimraf lib/**/_*",
    "test": "npm run build && mocha",
    "cover": "npm run clean && c8 --cache=false npm run test",
    "clean": "rimraf coverage lib",
    "docs": "npm run build && npx typedoc",
    "api-extractor": "npm run clean && tsc && api-extractor run --local --verbose"
  },
  "contributors": [
    "Stuart Herbert <stuherbert@ganbarodigital.com> (https://ganbarodigital.com)"
  ],
  "keywords": [
    "architypes",
    "booleanish",
    "contracts",
    "data guarantees",
    "data guards",
    "defensive programming",
    "entities",
    "error reporting",
    "hashmap",
    "nominals",
    "operators",
    "protocols",
    "refined types",
    "safe types",
    "type guards",
    "type refinement",
    "validation",
    "value objects"
  ],
  "files": [
    "lib/**/*",
    "CHANGELOG.md",
    "LICENSE.md"
  ],
  "license": "BSD-3-Clause",
  "devDependencies": {
    "@eslint/eslintrc": "^3.2.0",
    "@eslint/js": "^9.17.0",
    "@microsoft/api-documenter": "^7.13.28",
    "@microsoft/api-extractor": "^7.17.1",
    "@types/chai": "^4.3",
    "@types/mocha": "^10.0",
    "@types/node": "^20.0",
    "@typescript-eslint/eslint-plugin": "^8.0",
    "@typescript-eslint/parser": "^8.0",
    "c8": "^10.0",
    "chai": "^4.3.0",
    "chai-bytes": "^0.1.2",
    "chai-string": "^1.5.0",
    "eslint": "^9.0",
    "globals": "^15.13.0",
    "mocha": "^11.0",
    "rimraf": "^6.0.0",
    "ts-node": "^10.9",
    "tsconfig-paths": "^4.2.0",
    "typedoc": "^0.27",
    "typescript": "^5.7"
  },
  "c8": {
    "all": true,
    "include": [
      "src/**/*.ts"
    ],
    "exclude": [
      "**/_fixtures/*",
      "**/*.spec.ts",
      "**/*.type.ts"
    ]
  }
}
