-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.48 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
{
"main": "./dist/extension.cjs",
"module": "index.ts",
"dependencies": {
"@types/vscode": "^1.86.0"
},
"devDependencies": {
"@types/bun": "latest",
"@vscode/vsce": "^2.23.0",
"esbuild": "^0.20.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"type": "module",
"files": [
"./dist/extension.cjs"
],
"scripts": {
"dev": "echo 'Open this directory in VSCode and then run your extension with F5 or `Run and Debug > Run Extension`!'",
"build": "bun run ./scripts/build-with-esbuild.ts",
"watch": "bun run ./scripts/watch-with-esbuild.ts",
"vsce-package": "bun run vsce package",
"package": "bun run build && bun run vsce-package",
"clean": "rm -r ./dist"
},
"//": "START EXTENSION ATTRIBUTES",
"name": "vscode-graphql-import",
"author": "lalunamel",
"publisher": "lalunamel",
"version": "0.0.2",
"description": "A vscode extension to help with finding the right path to use with the #import expression in graphql files.",
"displayName": "GraphQL #import",
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/lalunamel/vscode-graphql-import"
},
"license": "MIT",
"engines": {
"vscode": "^1.86.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:graphql"
],
"languages": [
{
"id": "graphql",
"extensions": [
".gql",
".graphql",
".graphqls"
],
"aliases": [
"GraphQL"
]
}
]
}