-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.72 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
{
"name": "go-template-transpiler-extension",
"displayName": "Go Template Support via Transpiling",
"description": "Provides autocompletion, highlighting, and definition (click through) support to Go templates via transpiling them to Go.",
"icon": "ext_logo.png",
"version": "0.1.0",
"publisher": "mortenson",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mortenson/go-template-transpiler-extension"
},
"engines": {
"vscode": "^1.73.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:gotmpl_hack"
],
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint \"src/**/*.ts\"",
"lint-fix": "eslint --fix \"src/**/*.ts\"",
"package": "vsce package --allow-star-activation --skip-license --out go-template-transpiler-extension.vsix",
"install-extension": "npm run package && code --install-extension ./go-template-transpiler-extension.vsix",
"publish-extension": "npm run package && vsce publish"
},
"devDependencies": {
"@types/node": "^18",
"@types/tmp": "^0.2.6",
"@types/vscode": "^1.73.0",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vscode/vsce": "^2.27.0",
"eslint": "^8.26.0",
"typescript": "^5.4.2"
},
"contributes": {
"languages": [
{
"id": "gotmpl_hack",
"extensions": [
".gtpl"
]
}
],
"grammars": [
{
"language": "gotmpl_hack",
"scopeName": "text.html.gotmpl_hack",
"path": "./syntaxes/gotmpl_hack.json"
}
]
},
"dependencies": {
"tmp": "^0.2.3"
}
}