-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
139 lines (139 loc) · 4.31 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
{
"name": "teal-debugger-extension",
"version": "0.0.0",
"displayName": "TEAL debugger",
"publisher": "optio-labs",
"description": "A TEAL debugger extension for Visual Studio code",
"icon": "images/icon.png",
"author": "[email protected]",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/hone-labs/teal-debugger-extension/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/hone-labs/teal-debugger-extension",
"repository": {
"type": "git",
"url": "https://github.com/hone-labs/teal-debugger-extension.git"
},
"engines": {
"vscode": "^1.60.0"
},
"categories": [
"Programming Languages",
"Debuggers"
],
"activationEvents": [
"onCommand:teal-debugger-extension.helloWorld",
"onDebug"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "teal-debugger-extension.helloWorld",
"title": "Hello World"
}
],
"languages": [
{
"id": "teal",
"extensions": [
".teal"
],
"aliases": [
"Teal",
"teal",
"TEAL"
],
"configuration": "./language/language-configuration.json"
}
],
"grammars": [
{
"language": "teal",
"scopeName": "source.teal",
"path": "./language/teal.tmLanguage.json"
}
],
"breakpoints": [
{
"language": "teal"
}
],
"debuggers": [
{
"type": "teal",
"label": "Debug TEAL code",
"program": "./out/debugAdapter.js",
"languages": [
"teal"
],
"configurationAttributes": {
"launch": {
"required": [
"program"
],
"properties": {
"program": {
"type": "string",
"description": "Absolute path to a text file.",
"default": "${file}"
},
"stopOnEntry": {
"type": "boolean",
"description": "Automatically stop after launch.",
"default": true
}
}
}
},
"initialConfigurations": [
{
"type": "teal",
"request": "launch",
"name": "Debug TEAL code",
"program": "${file}",
"stopOnEntry": true
}
]
}
]
},
"scripts": {
"vscode:prepublish": "npm run bundle",
"compile": "webpack",
"watch": "webpack --watch",
"bundle": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p -w . --outDir out",
"pretest": "npm run compile-tests && npm run compile",
"test": "node ./out/test/runTest.js",
"package": "vsce package",
"publish": "vsce publish"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.1.4",
"@types/mocha": "^9.0.0",
"@types/node": "14.x",
"@types/superagent": "^4.1.13",
"@types/vscode": "^1.60.0",
"@vscode/test-electron": "^1.6.2",
"glob": "^7.1.7",
"mocha": "^9.1.1",
"ts-loader": "^9.2.5",
"typescript": "^4.4.3",
"vsce": "^2.5.0",
"webpack": "^5.61.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"fs-extra": "^10.0.0",
"json5": "^2.2.0",
"teal-interpreter": "^0.0.39",
"vscode-debugadapter": "^1.49.0",
"vscode-debugprotocol": "^1.49.0",
"yaml": "^1.10.2"
}
}