1{
2 "name": "@urql/exchange-execute",
3 "version": "3.0.0",
4 "description": "An exchange for executing queries against a local schema in urql",
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": "exchanges/execute"
14 },
15 "keywords": [
16 "urql",
17 "exchange",
18 "execute",
19 "executable schema",
20 "graphql",
21 "exchanges"
22 ],
23 "main": "dist/urql-exchange-execute",
24 "module": "dist/urql-exchange-execute.mjs",
25 "types": "dist/urql-exchange-execute.d.ts",
26 "source": "src/index.ts",
27 "exports": {
28 ".": {
29 "types": "./dist/urql-exchange-execute.d.ts",
30 "import": "./dist/urql-exchange-execute.mjs",
31 "require": "./dist/urql-exchange-execute.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 extras",
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 "dependencies": {
52 "@urql/core": "workspace:^6.0.1",
53 "wonka": "^6.3.2"
54 },
55 "peerDependencies": {
56 "@urql/core": "^6.0.0",
57 "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
58 },
59 "devDependencies": {
60 "@urql/core": "workspace:*",
61 "graphql": "^16.0.0"
62 },
63 "publishConfig": {
64 "access": "public",
65 "provenance": true
66 }
67}