{
  "name": "@akatek/timeslot",
  "version": "1.0.4",
  "main": "dist/cjs/index.js",
  "module": "dist/mjs/index.js",
  "exports": {
    ".": {
      "import": "./dist/mjs/index.js",
      "require": "./dist/cjs/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "license": "MIT",
  "keywords": [
    "timeslot",
    "timeslots"
  ],
  "author": "Arthur Jacquemin <arthurjacquemin2>",
  "devDependencies": {
    "@typescript-eslint/eslint-plugin": "^5.49.0",
    "@typescript-eslint/parser": "^5.49.0",
    "@vitest/coverage-istanbul": "^0.28.2",
    "eslint": "^8.32.0",
    "eslint-config-prettier": "^8.6.0",
    "eslint-plugin-import": "^2.27.5",
    "prettier": "^2.8.3",
    "tsup": "^6.5.0",
    "typescript": "^4.9.4",
    "vitest": "^0.28.2"
  },
  "dependencies": {
    "@types/node": "^18.11.18",
    "time-slotter": "^1.0.10"
  },
  "scripts": {
    "build": "tsup src/index.ts --format cjs,esm --dts --clean",
    "test": "vitest",
    "test:coverage": "vitest run --coverage",
    "dist": "pnpm build && cp package.json README.md LICENSE dist && pnpm publish dist --access public",
    "lint": "eslint --ignore-path .eslintignore --ext .js,.ts .",
    "lint:fix": "eslint --fix --ignore-path .eslintignore --ext .js,.ts .",
    "format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\""
  }
}