Mirror: The spec-compliant minimum of client-side GraphQL.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 14b1a0c1c4e11780b3438b8e2475721d0e764d00 114 lines 3.2 kB view raw
1{ 2 "name": "@0no-co/graphql.web", 3 "description": "A spec-compliant client-side GraphQL implementation", 4 "version": "1.0.6", 5 "author": "0no.co <hi@0no.co>", 6 "source": "./src/index.ts", 7 "main": "./dist/graphql.web", 8 "module": "./dist/graphql.web.mjs", 9 "types": "./dist/graphql.web.d.ts", 10 "sideEffects": false, 11 "files": [ 12 "LICENSE", 13 "README.md", 14 "dist/" 15 ], 16 "exports": { 17 ".": { 18 "types": "./dist/graphql.web.d.ts", 19 "import": "./dist/graphql.web.mjs", 20 "require": "./dist/graphql.web.js", 21 "source": "./src/index.ts" 22 }, 23 "./package.json": "./package.json" 24 }, 25 "peerDependencies": { 26 "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0" 27 }, 28 "peerDependenciesMeta": { 29 "graphql": { 30 "optional": true 31 } 32 }, 33 "public": true, 34 "keywords": [ 35 "graphql", 36 "graphql-js", 37 "client-side graphql" 38 ], 39 "scripts": { 40 "test": "vitest test", 41 "bench": "vitest bench --typecheck.enabled=false", 42 "check": "tsc", 43 "lint": "eslint --ext=js,ts .", 44 "build": "rollup -c scripts/rollup.config.mjs", 45 "clean": "rimraf dist node_modules/.cache", 46 "prepublishOnly": "run-s clean build check test", 47 "prepare": "node ./scripts/prepare.js", 48 "changeset:version": "changeset version && pnpm install --lockfile-only", 49 "changeset:publish": "changeset publish" 50 }, 51 "repository": "https://github.com/0no-co/graphql.web", 52 "bugs": { 53 "url": "https://github.com/0no-co/graphql.web/issues" 54 }, 55 "license": "MIT", 56 "prettier": { 57 "singleQuote": true, 58 "tabWidth": 2, 59 "printWidth": 100, 60 "trailingComma": "es5" 61 }, 62 "lint-staged": { 63 "*.{ts,js}": "eslint -c scripts/eslint-preset.js --fix", 64 "*.json": "prettier --write", 65 "*.md": "prettier --write" 66 }, 67 "husky": { 68 "hooks": { 69 "pre-commit": "lint-staged --quiet --relative" 70 } 71 }, 72 "eslintConfig": { 73 "root": true, 74 "extends": [ 75 "./scripts/eslint-preset.js" 76 ] 77 }, 78 "devDependencies": { 79 "@babel/plugin-transform-block-scoping": "^7.23.4", 80 "@babel/plugin-transform-typescript": "^7.23.6", 81 "@changesets/cli": "^2.27.1", 82 "@changesets/get-github-info": "^0.6.0", 83 "@rollup/plugin-babel": "^6.0.4", 84 "@rollup/plugin-commonjs": "^25.0.7", 85 "@rollup/plugin-node-resolve": "^15.2.3", 86 "@rollup/plugin-terser": "^0.4.4", 87 "@typescript-eslint/eslint-plugin": "^6.20.0", 88 "@typescript-eslint/parser": "^6.20.0", 89 "@vitest/coverage-v8": "^1.2.2", 90 "dotenv": "^16.4.1", 91 "eslint": "^8.56.0", 92 "eslint-config-prettier": "^9.1.0", 93 "eslint-plugin-prettier": "^5.1.3", 94 "eslint-plugin-tsdoc": "^0.2.17", 95 "husky-v4": "^4.3.8", 96 "lint-staged": "^15.2.0", 97 "npm-run-all": "^4.1.5", 98 "prettier": "^3.2.4", 99 "rimraf": "^5.0.5", 100 "rollup": "^4.9.6", 101 "rollup-plugin-cjs-check": "^1.0.3", 102 "rollup-plugin-dts": "^6.1.0", 103 "terser": "^5.27.0", 104 "typescript": "^5.3.3", 105 "vitest": "^1.2.2", 106 "graphql15": "npm:graphql@^15.8.0", 107 "graphql16": "npm:graphql@^16.8.1", 108 "graphql17": "npm:graphql@^17.0.0-alpha.3" 109 }, 110 "publishConfig": { 111 "access": "public", 112 "provenance": true 113 } 114}