This repository has been archived by the owner on Oct 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
130 lines (130 loc) · 4.26 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
{
"name": "ballerinacompilertoolkit",
"displayName": "Ballerina Compiler Toolkit",
"description": "VSCode Compiler Tools for Ballerina",
"version": "2.0.0-Alpha-SNAPSHOT",
"publisher": "ballerina",
"author": "ballerina.io",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/ballerina-platform/plugin-vscode-compiler-toolkit.git"
},
"icon": "resources/images/ballerina.png",
"galleryBanner": {
"color": "#e7eaeb",
"theme": "light"
},
"engines": {
"vscode": "^1.30.2"
},
"categories": [
"Programming Languages",
"Visualization",
"Extension Packs"
],
"activationEvents": [
"onLanguage:ballerina",
"onCommand:ballerinaCompilerToolkit.visualizeSyntaxTree",
"onCommand:ballerinaCompilerToolkit.copySyntaxApiCalls"
],
"contributes": {
"languages": [
{
"id": "ballerina",
"aliases": [
"Ballerina",
"ballerina"
],
"extensions": [
".bal"
]
}
],
"configuration": {
"type": "object",
"title": "Ballerina Compiler Toolkit",
"properties": {
"ballerinaCompilerToolkit.plugin.dev.mod": {
"type": "boolean",
"default": false,
"description": "Enable plugin development mode"
},
"ballerinaCompilerToolkit.home": {
"type": "string",
"default": "",
"description": "Specifies the path to the ballerina home directory"
},
"ballerinaCompilerToolkit.debugLog": {
"type": "boolean",
"default": false,
"description": "Enable printing debug messages on to the Ballerina Compiler Toolkitoutput channel."
}
}
},
"commands": [
{
"command": "ballerinaCompilerToolkit.visualizeSyntaxTree",
"title": "Syntax Tree Visualizer",
"category": "Ballerina Compiler Toolkit"
},
{
"command": "ballerinaCompilerToolkit.copySyntaxApiCalls",
"title": "Copy Syntax API calls to Clipboard",
"category": "Ballerina Compiler Toolkit"
}
]
},
"main": "./dist/extension",
"scripts": {
"vscode:prepublish": "webpack --mode production",
"compile": "webpack --mode none",
"watch": "webpack --mode none --watch --info-verbosity verbose",
"update-version": "node ./scripts/update-version.js",
"test-compile": "tsc -p ./",
"test": "npm run test-compile && node ./out/test/runTest.js",
"test-coverage": "cross-env COVER_CONFIG=html npm run test",
"package": "vsce package",
"lint": "tslint --fix 'src/**/*{.ts,.tsx}'"
},
"dependencies": {
"@types/js-base64": "^2.3.1",
"@types/vscode": "^1.54.0",
"dom-parser": "^0.1.6",
"elkjs": "^0.7.0",
"js-base64": "^2.5.1",
"lodash": "^4.17.21",
"mousetrap": "^1.6.3",
"promise.any": "^2.0.2",
"vscode-languageclient": "^6.1.4",
"vscode-languageserver-types": "^3.14.0",
"vscode-test": "^1.5.1",
"ws": "^6.2.2"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/dom-parser": "^0.1.1",
"@types/glob": "^7.1.3",
"@types/lodash": "^4.14.175",
"@types/mocha": "^2.2.42",
"@types/node": "^14.14.37",
"@types/ws": "^6.0.4",
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"decache": "^4.6.0",
"glob": "^7.1.6",
"istanbul": "^0.4.5",
"js-yaml": "^3.14.1",
"mocha": "^5.2.0",
"remap-istanbul": "^0.13.0",
"source-map-support": "^0.5.19",
"ts-loader": "^6.2.2",
"ts-node": "^9.1.1",
"tslint": "^5.20.1",
"typescript": "^4.2.3",
"unzipper": "^0.10.11",
"vsce": "^1.100.1",
"webpack": "^5.28.0",
"webpack-cli": "^4.5.0"
}
}