UNPKG

@jphil/bookwhen-client

Version:
101 lines 2.99 kB
{ "name": "@jphil/bookwhen-client", "version": "0.4.2", "description": "TypeScript client for the Bookwhen API (v2)", "private": false, "type": "module", "main": "./dist/index.js", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "default": "./dist/index.js" } }, "keywords": [ "bookwhen", "booking", "api client" ], "author": { "name": "Justin Philpott", "email": "justin@jphil.dev" }, "homepage": "https://github.com/justinphilpott/bookwhen-client", "bugs": { "url": "https://github.com/justinphilpott/bookwhen-client/issues" }, "repository": { "type": "git", "url": "https://github.com/justinphilpott/bookwhen-client.git" }, "files": [ "dist", "README.md", "LICENSE" ], "license": "ISC", "devDependencies": { "@arethetypeswrong/cli": "^0.16.4", "@changesets/cli": "^2.27.9", "@commitlint/cli": "^19.5.0", "@commitlint/config-conventional": "^19.5.0", "@mswjs/data": "^0.16.2", "@mswjs/http-middleware": "^0.10.3", "@playwright/test": "^1.52.0", "@types/node": "^22.9.0", "@typescript-eslint/eslint-plugin": "^8.13.0", "@typescript-eslint/parser": "^8.13.0", "@vitest/coverage-v8": "2.1.3", "axios": "^1.7.7", "c8": "^10.1.2", "commitizen": "^4.3.1", "cz-conventional-changelog": "^3.3.0", "dotenv": "^16.4.5", "eslint": "^9.13.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-prettier": "^5.2.1", "http-server": "^14.1.1", "husky": "^9.1.6", "msw": "^2.7.5", "playwright": "^1.52.0", "playwright-msw": "^3.0.1", "prettier": "^3.3.3", "start-server-and-test": "^2.0.12", "tsup": "^8.3.4", "typescript": "^5.6.3", "vite": "^5.4.10", "vite-plugin-dts": "^4.5.3", "vite-tsconfig-paths": "^5.1.0", "vitest": "^2.1.3", "zod": "^3.23.8" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "peerDependencies": { "axios": "^1.7.0", "zod": "^3.23.0" }, "scripts": { "dev": "vitest", "preview": "vite preview --config vite.preview.config.ts", "build": "vite build -c vite.library.config.ts", "build:node": "vite build -c vite.test.config.ts", "lint": "tsc", "serve:test:browser": "http-server . -p 3000 -c-1", "test:browser": "playwright test", "test:node": "vitest run", "test": "pnpm test:node && pnpm build && start-server-and-test serve:test:browser http://localhost:3000 test:browser", "test:node:coverage": "vitest run --coverage", "type-check": "tsc --noEmit", "check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm", "prettier-check": "prettier --check 'src/**/*.ts'", "format": "prettier --write 'src/**/*.ts' README.md", "pre-commit": "pnpm lint && pnpm build && pnpm test && pnpm check-exports" } }