openf1-hooks
Version:
React Query hooks for the OpenF1 API
56 lines (55 loc) • 1.29 kB
JSON
{
"name": "openf1-hooks",
"version": "0.2.0",
"description": "React Query hooks for the OpenF1 API",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "tsc --noEmit"
},
"keywords": [
"react",
"react-query",
"openf1",
"formula1",
"f1",
"api",
"wrapper",
"typescript",
"hooks"
],
"author": "Jhonatan Laguna <jhonlpdev@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jl4guna/openf1-hooks.git"
},
"bugs": {
"url": "https://github.com/jl4guna/openf1-hooks/issues"
},
"homepage": "https://github.com/jl4guna/openf1-hooks#readme",
"dependencies": {
"@tanstack/react-query": "^5.45.0"
},
"devDependencies": {
"@types/node": "^20.14.2",
"@types/react": "^18.3.3",
"react": "^18.3.1",
"tsup": "^8.1.0",
"typescript": "^5.4.5"
},
"peerDependencies": {
"react": ">=16.8.0",
"@tanstack/react-query": "^5.0.0"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
}
}