Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
1{
2 "name": "@urql/solid",
3 "version": "1.0.1",
4 "description": "A highly customizable and versatile GraphQL client for Solid",
5 "sideEffects": false,
6 "homepage": "https://formidable.com/open-source/urql/docs/",
7 "bugs": "https://github.com/urql-graphql/urql/issues",
8 "license": "MIT",
9 "author": "urql GraphQL Contributors",
10 "repository": {
11 "type": "git",
12 "url": "https://github.com/urql-graphql/urql.git",
13 "directory": "packages/solid-urql"
14 },
15 "keywords": [
16 "graphql client",
17 "state management",
18 "cache",
19 "graphql",
20 "exchanges",
21 "solid"
22 ],
23 "main": "dist/urql-solid",
24 "module": "dist/urql-solid.mjs",
25 "types": "dist/urql-solid.d.ts",
26 "source": "src/index.ts",
27 "exports": {
28 ".": {
29 "types": "./dist/urql-solid.d.ts",
30 "import": "./dist/urql-solid.mjs",
31 "require": "./dist/urql-solid.js",
32 "source": "./src/index.ts"
33 },
34 "./package.json": "./package.json"
35 },
36 "files": [
37 "LICENSE",
38 "CHANGELOG.md",
39 "README.md",
40 "dist/"
41 ],
42 "scripts": {
43 "test": "vitest",
44 "clean": "rimraf dist",
45 "check": "tsc --noEmit",
46 "lint": "eslint --ext=js,jsx,ts,tsx .",
47 "build": "rollup -c ../../scripts/rollup/config.mjs",
48 "prepare": "node ../../scripts/prepare/index.js",
49 "prepublishOnly": "run-s clean build"
50 },
51 "devDependencies": {
52 "@solidjs/testing-library": "^0.8.2",
53 "@urql/core": "workspace:*",
54 "graphql": "^16.0.0",
55 "jsdom": "^22.1.0",
56 "vite-plugin-solid": "^2.7.0"
57 },
58 "peerDependencies": {
59 "@urql/core": "^6.0.0",
60 "solid-js": "^1.7.7"
61 },
62 "dependencies": {
63 "@solid-primitives/utils": "^6.2.1",
64 "@urql/core": "workspace:^6.0.1",
65 "wonka": "^6.3.2"
66 },
67 "publishConfig": {
68 "access": "public",
69 "provenance": true
70 }
71}