-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
156 lines (156 loc) · 3.82 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"name": "HLB",
"displayName": "HLB",
"version": "0.0.1",
"publisher": "OpenLLB",
"description": "HLB for Visual Studio Code",
"author": {
"name": "Edgar Lee",
"email": "[email protected]"
},
"license": "MIT",
"categories": [
"Programming Languages",
"Linters",
"Debuggers",
"Formatters"
],
"repository": {
"type": "git",
"url": "https://github.com/openllb/vscode-hlb.git"
},
"bugs": {
"url": "https://github.com/openllb/vscode-hlb/issues"
},
"keywords": [
"multi-root ready"
],
"scripts": {
"vscode:prepublish": "npm run compile",
"bundle": "esbuild src/extension.ts --bundle --outdir=dist --external:vscode --format=cjs --platform=node",
"bundle-dev": "npm run bundle -- --sourcemap",
"bundle-watch": "npm run bundle -- --sourcemap --watch",
"test-compile": "tsc -p ./",
"compile": "npm run bundle",
"watch": "tsc -watch -p ./",
"lint": "gts lint src",
"fix-lint": "gts fix src",
"format": "prettier --write \"src/**/*.ts\""
},
"dependencies": {
"glob": "7.1.7",
"npm-which": "^3.0.1",
"vscode-debugadapter": "1.45.0",
"vscode-debugadapter-testsupport": "1.45.0",
"vscode-debugprotocol": "1.45.0",
"vscode-languageclient": "7.0.0",
"vscode-languageserver-protocol": "3.16.0"
},
"devDependencies": {
"@types/glob": "7.1.3",
"@types/mocha": "7.0.2",
"@types/node": "13.13.46",
"@types/vscode": "1.59.0",
"@types/npm-which": "^3.0.1",
"esbuild": "0.12.21",
"gts": "3.1.0",
"mocha": "9.2.0",
"prettier": "2.2.1",
"ts-loader": "7.0.5",
"tslint": "6.1.3",
"typescript": "3.9.9"
},
"engines": {
"vscode": "^1.59.0"
},
"activationEvents": [
"onLanguage:hlb"
],
"main": "./dist/extension.js",
"capabilities": {
"virtualWorkspaces": false,
"untrustedWorkspaces": {
"supported": "limited"
}
},
"contributes": {
"languages": [
{
"id": "hlb",
"extensions": [
".hlb"
],
"aliases": [
"HLB"
]
}
],
"configurationDefaults": {
"[hlb]": {
"editor.insertSpaces": false,
"editor.formatOnSave": true
}
},
"commands": [
{
"command": "hlb.run.file",
"title": "HLB: Run Current file",
"description": "Run a function of the current file."
},
{
"command": "hlb.debug.file",
"title": "HLB: Debug Current file",
"description": "Debug a function of the current file."
}
],
"breakpoints": [
{
"language": "hlb"
}
],
"debuggers": [
{
"type": "hlb",
"label": "HLB",
"languages": [
"hlb"
],
"configurationSnippets": [
{
"label": "HLB: Launch function",
"description": "Debug the function",
"body": {
"name": "${3:Launch test function}",
"type": "hlb",
"request": "launch",
"module": "^\"${1:\\${file\\}}\"",
"target": "${2:default}"
}
}
],
"configurationAttributes": {
"launch": {
"required": [],
"properties": {
"stopOnEntry": {
"type": "boolean",
"description": "Automatically stop program after launch.",
"default": false
},
"module": {
"type": "string",
"description": "Path to HLB module.",
"default": "${workspaceFolder}/build.hlb"
},
"target": {
"type": "string",
"description": "Target function to run.",
"default": "default"
}
}
}
}
}
]
}
}