{
  "name": "hotscript",
  "version": "1.0.13",
  "description": "A library of composable functions for the type-level! Transform your TypeScript types in any way you want using functions you already know.",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "build": "tsup src/index.ts --format esm,cjs && tsc src/index.ts --declaration --emitDeclarationOnly --outDir dist",
    "prepublishOnly": "npm run test && npm run build",
    "test": "jest",
    "clear-test": "jest --clearCache",
    "perf": "tsc --project test/tsconfig.json --noEmit --extendedDiagnostics",
    "fmt": "prettier ./src/** ./test/** -w",
    "check": "tsc --strict --noEmit --extendedDiagnostics"
  },
  "files": [
    "dist/**/*"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/gvergnaud/HOTScript.git"
  },
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/gvergnaud/HOTScript/issues"
  },
  "homepage": "https://github.com/gvergnaud/HOTScript#readme",
  "author": "Gabriel Vergnaud",
  "devDependencies": {
    "@types/jest": "^29.4.0",
    "jest": "^29.4.2",
    "prettier": "^2.8.4",
    "ts-jest": "^29.0.5",
    "tsup": "^6.7.0",
    "typescript": "^4.9.5"
  }
}
