-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.83 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
{
"name": "esm-vscode",
"version": "0.0.13",
"displayName": "esm.sh",
"description": "A Visual Studio Code extension loads types(.d.ts) for esm.sh imports.",
"publisher": "ije",
"keywords": [
"esm.sh",
"no-build",
"no build",
"importmap",
"import-map",
"import map",
"import maps",
"html"
],
"license": "MIT",
"activationEvents": [
"onLanguage:html",
"onLanguage:javascript",
"onLanguage:javascriptreact",
"onLanguage:typescript",
"onLanguage:typescriptreact"
],
"main": "./dist/extension.js",
"icon": "icon.png",
"contributes": {
"grammars": [
{
"scopeName": "source.json.embeddedimportmap",
"path": "./syntaxes/html-importmap.json",
"injectTo": [
"text.html"
],
"embeddedLanguages": {
"meta.embedded.block.html.importmap": "json"
}
}
],
"snippets": [
{
"language": "html",
"path": "./snippets/html.json"
}
],
"typescriptServerPlugins": [
{
"name": "typescript-esmsh-plugin",
"enableForWorkspaceTypeScriptVersions": true
}
]
},
"scripts": {
"build": "node build.mjs && vsce package",
"debug-build": "DEBUG=true node build.mjs && vsce package",
"start": "DEBUG=true node build.mjs && code --extensionDevelopmentPath=$PWD"
},
"devDependencies": {
"@types/node": "22.7.5",
"@types/vscode": "1.90.0",
"@vscode/vsce": "2.32.0",
"esbuild": "0.24.0",
"html5parser": "2.0.2",
"typescript": "5.6.3"
},
"dependencies": {
"typescript-esmsh-plugin": "./typescript-esmsh-plugin"
},
"engines": {
"vscode": "^1.90.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/esm-dev/esm-vscode"
},
"bugs": {
"url": "https://github.com/esm-dev/esm.sh/issues"
}
}