{ "name": "@0no-co/graphql.web", "description": "A spec-compliant client-side GraphQL implementation", "version": "1.0.0", "author": "0no.co ", "source": "./src/index.ts", "main": "./dist/graphql.web", "module": "./dist/graphql.web.mjs", "types": "./dist/graphql.web.d.ts", "sideEffects": false, "files": [ "LICENSE", "README.md", "dist/" ], "exports": { ".": { "import": "./dist/graphql.web.mjs", "require": "./dist/graphql.web.js", "types": "./dist/graphql.web.d.ts", "source": "./src/index.ts" }, "./package.json": "./package.json" }, "peerDependencies": { "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0" }, "peerDependenciesMeta": { "graphql": { "optional": true } }, "public": true, "keywords": [ "graphql", "graphql-js", "client-side graphql" ], "scripts": { "test": "vitest", "check": "tsc", "lint": "eslint --ext=js,ts .", "build": "rollup -c scripts/rollup.config.mjs", "clean": "rimraf dist node_modules/.cache", "prepublishOnly": "run-s clean build check test", "prepare": "node ./scripts/prepare.js", "changeset:version": "changeset version && pnpm install --lockfile-only", "changeset:publish": "changeset publish" }, "repository": "https://github.com/0no-co/graphql.web", "bugs": { "url": "https://github.com/0no-co/graphql.web/issues" }, "license": "MIT", "prettier": { "singleQuote": true, "tabWidth": 2, "printWidth": 100 }, "lint-staged": { "*.{ts,js}": "eslint -c scripts/eslint-preset.js --fix", "*.json": "prettier --write", "*.md": "prettier --write" }, "husky": { "hooks": { "pre-commit": "lint-staged --quiet --relative" } }, "eslintConfig": { "root": true, "extends": [ "./scripts/eslint-preset.js" ] }, "devDependencies": { "@changesets/cli": "^2.26.0", "@changesets/get-github-info": "^0.5.2", "@rollup/plugin-buble": "^1.0.2", "@rollup/plugin-commonjs": "^24.0.1", "@rollup/plugin-node-resolve": "^15.0.1", "@rollup/plugin-sucrase": "^5.0.1", "@rollup/plugin-terser": "^0.4.0", "@typescript-eslint/eslint-plugin": "^5.55.0", "@typescript-eslint/parser": "^5.55.0", "@vitest/coverage-c8": "^0.29.7", "dotenv": "^16.0.3", "eslint": "^8.36.0", "eslint-config-prettier": "^8.7.0", "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-tsdoc": "^0.2.17", "graphql": "^16.6.0", "husky-v4": "^4.3.8", "lint-staged": "^13.2.0", "npm-run-all": "^4.1.5", "prettier": "^2.8.4", "rimraf": "^4.4.0", "rollup": "^3.19.1", "rollup-plugin-cjs-check": "^1.0.2", "rollup-plugin-dts": "^5.3.0", "terser": "^5.16.6", "typescript": "^5.0.2", "vitest": "^0.29.7" }, "publishConfig": { "access": "public", "provenance": true } }