-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.37 KB
/
Copy pathpackage.json
File metadata and controls
118 lines (118 loc) · 3.37 KB
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
{
"name": "vscode-graphql-execution",
"version": "0.3.7",
"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": {
"build": "tsgo -p tsconfig.json",
"types:check": "tsgo --noEmit",
"compile": "node esbuild.js",
"build-bundles": "pnpm compile",
"vsce:package": "pnpm compile && vsce package --no-dependencies"
},
"devDependencies": {
"@types/capitalize": "2.0.0",
"@types/dotenv": "8.2.0",
"@types/node": "^24",
"@types/vscode": "1.62.0",
"@types/ws": "8.2.2",
"@typescript/native-preview": "^7.0.0-dev.20260707.2",
"@vscode/vsce": "^3.9.2",
"esbuild": "0.28.2",
"ovsx": "0.8.3"
},
"dependencies": {
"@graphql-tools/code-file-loader": "8.0.3",
"@urql/core": "^6.0.1",
"@whatwg-node/fetch": "0.2.8",
"capitalize": "2.0.4",
"cosmiconfig-toml-loader": "^1.0.0",
"dotenv": "10.0.0",
"graphql": "^16.9.0 || ^17.0.0-rc.0",
"graphql-config": "^5.1.6",
"graphql-ws": "6.0.8",
"nullthrows": "1.1.1",
"svelte": "^5.55.7",
"svelte2tsx": "^0.7.61",
"wonka": "^6.3.6",
"ws": "8.21.0"
}
}