Mirror: Modular GraphQL.js import paths without the hassle.
at v1.0.1 1.1 kB view raw
1{ 2 "name": "babel-plugin-modular-graphql", 3 "description": "Modular GraphQL.js import paths without the hassle", 4 "version": "1.0.1", 5 "main": "index.js", 6 "author": "Phil Pluckthun <phil@kitten.sh>", 7 "license": "MIT", 8 "repository": "https://github.com/kitten/babel-plugin-modular-graphql", 9 "bugs": { 10 "url": "https://github.com/kitten/babel-plugin-modular-graphql/issues" 11 }, 12 "files": [ 13 "import-map.json", 14 "import-map-overrides.json", 15 "index.js" 16 ], 17 "scripts": { 18 "build": "node scripts/generate-import-map.js", 19 "prepublishOnly": "node scripts/generate-import-map.js" 20 }, 21 "keywords": [ 22 "graphql", 23 "babel-plugin", 24 "modular", 25 "tree-shaking" 26 ], 27 "devDependencies": { 28 "@rollup/plugin-node-resolve": "^10.0.0", 29 "graphql": "^15.4.0", 30 "husky": "^4.3.0", 31 "lint-staged": "^10.5.0", 32 "prettier": "^2.1.2", 33 "rollup": "^2.32.1" 34 }, 35 "lint-staged": { 36 "*.{json,js}": [ 37 "prettier --write" 38 ] 39 }, 40 "husky": { 41 "hooks": { 42 "pre-commit": "lint-staged" 43 } 44 }, 45 "prettier": { 46 "singleQuote": true, 47 "printWidth": 100 48 } 49}