-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.04 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "coc-graphql",
"version": "0.0.1",
"description": "GraphQL Language Service extension for coc.nvim",
"main": "lib/index.js",
"repository": "https://github.com/felippepuhle/coc-graphql",
"author": "felippepuhle",
"license": "MIT",
"private": false,
"scripts": {
"clean": "rm -rf lib",
"watch": "webpack --watch",
"build": "webpack",
"prettier": "prettier --write '(server|src)/**/*.ts'"
},
"engines": {
"coc": "^0.0.77"
},
"activationEvents": [
"*"
],
"contributes": {
"configuration": {
"type": "object",
"title": "GraphQL",
"properties": {
"graphql.debug": {
"type": "boolean",
"default": false
}
}
}
},
"devDependencies": {
"coc.nvim": "^0.0.77",
"ts-loader": "^8.0.2",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"graphql": "^15.3.0",
"graphql-config": "^3.0.3",
"graphql-language-service-server": "^2.5.0-alpha.4",
"prettier": "^2.0.5"
}
}