forked from kumarharsh/graphql-for-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 3.19 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "graphql-for-vscode",
"displayName": "GraphQL for VSCode",
"version": "1.0.0",
"description": "GraphQL syntax highlighting, linting, auto-complete, and more!",
"author": {
"name": "Kumar Harsh",
"email": "[email protected]",
"url": "https://github.com/kumarharsh"
},
"keywords": [
"vscode",
"visual studio code",
"graphql",
"linter"
],
"publisher": "kumar-harsh",
"engines": {
"vscode": "^1.4.0"
},
"license": "MIT",
"contributors": [
{
"name": "Mayank Agarwal (@Mayank1791989)",
"url": "github.com/Mayank1791989",
"email": "[email protected]"
}
],
"categories": [
"Languages",
"Linters",
"Snippets"
],
"repository": {
"type": "git",
"url": "https://github.com/kumarharsh/graphql-for-vscode.git"
},
"bugs": {
"url": "https://github.com/kumarharsh/graphql-for-vscode/issues"
},
"homepage": "https://github.com/kumarharsh/graphql-for-vscode/blob/master/README.md",
"icon": "images/logo.svg",
"activationEvents": [
"onLanguage:graphql"
],
"main": "./out/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "Graphql Configuration",
"properties": {
"graphqlForVSCode.nodePath": {
"type": [
"string",
"null"
],
"default": null,
"description": "A path added to NODE_PATH when resolving the @playlyfe/gql module."
}
}
},
"languages": [
{
"id": "graphql",
"extensions": [
".gql",
".graphql"
],
"aliases": [
"GraphQL"
],
"configuration": "./graphql.configuration.json"
}
],
"grammars": [
{
"language": "graphql",
"scopeName": "source.graphql",
"path": "./syntaxes/graphql.json"
},
{
"injectTo": [
"source.js",
"source.ts",
"source.jsx",
"source.tsx"
],
"scopeName": "relayQL.graphql",
"path": "./syntaxes/graphql.js.json"
}
],
"snippets": [
{
"language": "graphql",
"path": "./snippets/graphql.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile-server && npm run compile",
"compile-server": "tsc -p src/server",
"watch-server": "tsc --watch -p src/server",
"compile": "tsc -p src/client",
"watch": "tsc -watch -p src/client",
"postinstall": "node ./node_modules/vscode/bin/install",
"semantic-release": "semantic-release pre && vsce publish -p $VS_TOKEN && semantic-release post"
},
"devDependencies": {
"@types/node": "^6.0.40",
"conventional-recommended-bump": "^0.3.0",
"semantic-release": "^6.3.2",
"semantic-release-visualstudio-marketplace-version": "^1.0.0",
"typescript": "^2.0.10",
"vscode": "^1.0.3"
},
"dependencies": {
"vscode-languageclient": "^2.5.0",
"vscode-languageserver": "^2.6.2",
"vscode-uri": "^1.0.0"
},
"galleryBanner": {
"color": "#2e2348",
"theme": "dark"
},
"release": {
"getLastRelease": "semantic-release-visualstudio-marketplace-version",
"analyzeCommits": "./scripts/analyzeCommits"
}
}