Files
copilot-toolbox-template-121/node_modules/urql/package.json
2026-01-16 02:20:32 +00:00

67 lines
1.6 KiB
JSON

{
"name": "urql",
"version": "4.2.2",
"description": "A highly customizable and versatile GraphQL client for React",
"sideEffects": false,
"homepage": "https://formidable.com/open-source/urql/docs/",
"bugs": "https://github.com/urql-graphql/urql/issues",
"license": "MIT",
"author": "urql GraphQL Contributors",
"repository": {
"type": "git",
"url": "https://github.com/urql-graphql/urql.git",
"directory": "packages/react-urql"
},
"keywords": [
"graphql client",
"state management",
"cache",
"graphql",
"exchanges",
"react"
],
"main": "dist/urql.js",
"module": "dist/urql.es.js",
"types": "dist/urql.d.ts",
"source": "src/index.ts",
"files": [
"LICENSE",
"CHANGELOG.md",
"README.md",
"core/",
"dist/"
],
"devDependencies": {
"@cypress/react": "^8.0.2",
"@cypress/vite-dev-server": "^5.2.0",
"@testing-library/react": "^16.0.1",
"@types/react": "^18.3.8",
"@types/react-test-renderer": "^17.0.1",
"cypress": "^13.14.0",
"graphql": "^16.6.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-is": "^18.3.1",
"react-ssr-prepass": "^1.5.0",
"react-test-renderer": "^18.3.1",
"@urql/core": "5.1.1"
},
"peerDependencies": {
"@urql/core": "^5.0.0",
"react": ">= 16.8.0"
},
"dependencies": {
"@urql/core": "^5.1.1",
"wonka": "^6.3.2"
},
"publishConfig": {
"provenance": true
},
"scripts": {
"test": "vitest",
"clean": "rimraf dist",
"check": "tsc --noEmit",
"lint": "eslint --ext=js,jsx,ts,tsx .",
"build": "rollup -c ../../scripts/rollup/config.mjs"
}
}