ws-dottie
Version:
Your friendly TypeScript companion for Washington State transportation APIs - WSDOT and WSF data with smart caching and React Query integration
113 lines (112 loc) • 3.8 kB
JSON
{
"name": "ws-dottie",
"version": "0.6.0",
"description": "Your friendly TypeScript companion for Washington State transportation APIs - WSDOT and WSF data with smart caching and React Query integration",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.mjs"
},
"./types": {
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"docs"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest --config config/vitest.config.ts",
"test:unit": "vitest --config config/vitest.unit.config.ts",
"test:e2e": "vitest --config config/vitest.e2e.config.ts",
"test:e2e:api": "vitest --config config/vitest.e2e.api.config.ts",
"test:e2e:api:jsonp": "JSONP=true vitest --config config/vitest.e2e.api.config.ts",
"test:e2e:validation": "vitest --config config/vitest.e2e.api.config.ts tests/e2e/validation/",
"test:e2e:validation:jsonp": "JSONP=true vitest --config config/vitest.e2e.api.config.ts tests/e2e/validation/",
"test:e2e:validation:jsonp:flag": "node scripts/test-jsonp.js --config config/vitest.e2e.api.config.ts tests/e2e/validation/ --jsonp",
"test:e2e:hook": "vitest --config config/vitest.e2e.hook.config.ts",
"test:e2e:watch": "vitest --config config/vitest.e2e.config.ts --watch",
"test:e2e:api:watch": "vitest --config config/vitest.e2e.api.config.ts --watch",
"test:e2e:api:jsonp:watch": "JSONP=true vitest --config config/vitest.e2e.api.config.ts --watch",
"test:e2e:validation:watch": "vitest --config config/vitest.e2e.api.config.ts tests/e2e/validation/ --watch",
"test:e2e:validation:jsonp:watch": "JSONP=true vitest --config config/vitest.e2e.api.config.ts tests/e2e/validation/ --watch",
"test:e2e:hook:watch": "vitest --config config/vitest.e2e.hook.config.ts --watch",
"test:coverage": "vitest --coverage",
"test:ui": "vitest --ui",
"lint": "biome lint src/ tests/",
"format": "biome format --write src/ tests/",
"type-check": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"@tanstack/react-query": ">=5.0.0",
"react": ">=18.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.0.6",
"@happy-dom/global-registrator": "^18.0.1",
"@tanstack/react-query": "^5.0.0",
"@testing-library/react": "^16.3.0",
"@types/jsdom": "^21.1.7",
"@types/node": "^24.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitest/ui": "^1.0.0",
"dotenv": "^17.2.0",
"jsdom": "^26.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tsup": "^8.0.0",
"typescript": "^5.0.0",
"vitest": "^1.0.0"
},
"dependencies": {
"zod": "^4.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"wsdot",
"washington",
"washington-state",
"washington-state-ferry",
"washington-state-ferry-api",
"washington-state-department-of-transportation",
"washington-state-department-of-transportation-api",
"transportation",
"api",
"traffic",
"weather",
"ferries",
"highway-cameras",
"travel-times",
"typescript",
"react",
"react-query",
"tanstack-query",
"jsonp",
"cors",
"real-time",
"traffic-data",
"ferry-data"
],
"author": "Rob Jacobson <rljacobson@outlook.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/RobJacobson/ws-dottie.git"
},
"bugs": {
"url": "https://github.com/RobJacobson/ws-dottie/issues"
},
"homepage": "https://github.com/RobJacobson/ws-dottie#readme"
}