-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
package.json
121 lines (121 loc) · 3.57 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
{
"name": "vscode-graphql-execution",
"version": "0.3.1",
"displayName": "GraphQL: Inline Operation Execution",
"description": "Execute graphql operations from your code (revived!)",
"publisher": "GraphQL",
"license": "MIT",
"private": true,
"engines": {
"vscode": "^1.63.0"
},
"main": "./out/extension.js",
"icon": "assets/images/logo.png",
"contributors": [
{
"name": "Divyendu Singh",
"url": "https://www.divyendusingh.com/"
}
],
"galleryBanner": {
"color": "#032539",
"theme": "dark"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onCommand:vscode-graphql-execution.contentProvider.isDebugging",
"onCommand:vscode-graphql-execution.contentProvidergit.contentProvider",
"workspaceContains:**/.graphqlrc",
"workspaceContains:**/.graphqlrc.{json,yaml,yml,js,ts,toml}",
"workspaceContains:**/graphql.config.{json,yaml,yml,js,ts,toml}",
"workspaceContains:**/package.json"
],
"contributes": {
"commands": [
{
"command": "vscode-graphql-execution.isDebugging",
"title": "GraphQL Exec: Is Debugging?"
},
{
"command": "vscode-graphql-execution.showOutputChannel",
"title": "GraphQL Exec: Show output channel"
},
{
"command": "vscode-graphql-execution.contentProvider",
"title": "GraphQL Exec: Execute GraphQL Operations"
}
],
"configuration": {
"title": "VSCode GraphQL: Inline Operation Execution",
"properties": {
"vscode-graphql-execution.debug": {
"type": [
"boolean",
"null"
],
"default": false,
"description": "Enable debug logs"
},
"vscode-graphql-execution.showExecCodelens": {
"type": [
"boolean"
],
"description": "Show codelens to execute operations inline",
"default": true
},
"vscode-graphql-execution.rejectUnauthorized": {
"type": [
"boolean"
],
"description": "Fail the request on invalid certificate",
"default": true
}
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/graphql/graphiql",
"directory": "packages/vscode-graphql-execution"
},
"homepage": "https://github.com/graphql/graphiql/blob/main/packages/vscode-graphql-execution/README.md",
"scripts": {
"compile": "node esbuild.js",
"build-bundles": "yarn run compile",
"vsce:package": "yarn compile && vsce package --yarn",
"vsce:prepublish": "yarn run vsce:package",
"vsce:publish": "vsce publish --yarn",
"open-vsx:publish": "ovsx publish $(ls -1 *.vsix | sort -V | tail -n 1) --pat $OVSX_PAT",
"release": "yarn run compile && yarn run vsce:publish && yarn run open-vsx:publish"
},
"devDependencies": {
"@types/capitalize": "2.0.0",
"@types/dotenv": "8.2.0",
"@types/mocha": "5.2.7",
"@types/node": "^16.18.4",
"@types/vscode": "1.62.0",
"@types/ws": "8.2.2",
"@vscode/vsce": "^2.22.1-2",
"esbuild": "0.18.10",
"ovsx": "0.8.3"
},
"dependencies": {
"@graphql-tools/code-file-loader": "8.0.3",
"@urql/core": "2.6.1",
"@whatwg-node/fetch": "0.2.8",
"capitalize": "2.0.4",
"cosmiconfig": "8.2.0",
"cosmiconfig-toml-loader": "^1.0.0",
"dotenv": "10.0.0",
"graphql": "^16.8.1 || ^17.0.0-alpha.2",
"graphql-config": "5.0.3",
"graphql-tag": "2.12.6",
"graphql-ws": "5.10.0",
"svelte": "^4.2.19",
"svelte2tsx": "^0.6.16",
"ws": "8.17.1",
"nullthrows": "1.1.1"
}
}