graphqlsp
Version:
https://github.com/microsoft/TypeScript/wiki/Writing-a-Language-Service-Plugin
55 lines • 1.51 kB
JSON
{
"name": "graphqlsp",
"version": "0.1.0",
"description": "https://github.com/microsoft/TypeScript/wiki/Writing-a-Language-Service-Plugin",
"main": "./dist/index.js",
"module": "./dist/index.module.js",
"repository": {
"type": "git",
"url": "git+https://github.com/JoviDeCroock/GraphQLSP.git"
},
"keywords": [
"GraphQL",
"TypeScript",
"LSP",
"Typed-document-node"
],
"author": "0no.co <hi@0no.co>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JoviDeCroock/GraphQLSP/issues"
},
"homepage": "https://github.com/JoviDeCroock/GraphQLSP#readme",
"prettier": {
"singleQuote": true,
"arrowParens": "avoid",
"trailingComma": "es5"
},
"lint-staged": {
"*.{js,ts,json,md}": "prettier --write"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@changesets/get-github-info": "^0.5.2",
"@rollup/plugin-terser": "^0.4.1",
"@rollup/plugin-typescript": "^11.1.0",
"@types/node": "^18.15.11",
"dotenv": "^16.0.3",
"graphql": "^16.5.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"rollup": "^3.20.2",
"typescript": "^5.0.0"
},
"dependencies": {
"@graphql-codegen/core": "^2.6.8",
"@graphql-codegen/typed-document-node": "^2.3.10",
"@graphql-codegen/typescript": "^2.8.5",
"@graphql-codegen/typescript-operations": "^2.5.10",
"graphql-language-service": "^5.0.6"
},
"scripts": {
"build": "rollup -c ./scripts/build.mjs"
}
}