-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
111 lines (111 loc) · 2.89 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
{
"icon": "assets/hashicorp_logo_mark_light_universal_radius45.png",
"name": "hcl",
"publisher": "hashicorp",
"displayName": "HashiCorp HCL",
"description": "HashiCorp HCL syntax",
"appInsightsKey": "885372d2-6f3c-499f-9d25-b8b219983a52",
"version": "0.6.0",
"license": "MPL-2.0",
"preview": false,
"private": true,
"syntax": {
"version": "0.7.1"
},
"engines": {
"npm": "~10.X",
"node": "~20.X",
"vscode": "^1.92.0"
},
"categories": [
"Programming Languages",
"Other"
],
"keywords": [
"HashiCorp",
"devops",
"cloud",
"hcl"
],
"galleryBanner": {
"color": "#FFF",
"theme": "light"
},
"homepage": "https://github.com/hashicorp/vscode-hcl",
"bugs": {
"url": "https://github.com/hashicorp/vscode-hcl/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/hashicorp/vscode-hcl.git"
},
"activationEvents": [
"workspaceContains:**/*.hcl"
],
"main": "./out/extension",
"browser": "./out/web/extension",
"contributes": {
"languages": [
{
"id": "hcl",
"aliases": [
"HCL"
],
"extensions": [
".hcl"
],
"configuration": "./language-configuration.json",
"icon": {
"light": "./assets/HashiCorp_Icon_Black_RGB.svg",
"dark": "./assets/HashiCorp_Icon_White_RGB.svg"
}
}
],
"grammars": [
{
"language": "hcl",
"scopeName": "source.hcl",
"path": "./syntaxes/hcl.tmGrammar.json"
}
]
},
"scripts": {
"lint": "eslint src --ext ts",
"prettier": "prettier \"**/*.+(js|json|ts)\"",
"format": "npm run prettier -- --write",
"check-format": "npm run prettier -- --check",
"download:syntax": "ts-node ./build/download-syntax.ts",
"prepare": "npm run download:syntax",
"compile": "webpack --mode development",
"watch": "webpack --mode development --watch",
"prepackage": "npm run download:syntax",
"vscode:prepublish": "webpack --mode production --devtool hidden-source-map",
"package": "vsce package",
"run-in-browser": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. ."
},
"dependencies": {
"@vscode/extension-telemetry": "^0.5.2",
"path-browserify": "^1.0.1"
},
"devDependencies": {
"@types/node": "^20.14.8",
"@types/vscode": "^1.92.0",
"@types/webpack-env": "^1.17.0",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"@vscode/test-electron": "^2.0.3",
"@vscode/vsce": "^3.2.0",
"assert": "^2.0.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"got": "^11.8.3",
"prettier": "^2.5.1",
"process": "^0.11.10",
"ts-loader": "^9.3.0",
"ts-node": "^10.6.0",
"typescript": "^4.7.3",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2"
}
}