-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.27 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
{
"name": "fable-vscode-extension",
"displayName": "Highlight HTML/SQL templates in F#",
"description": "Syntax highlighting for template strings in F#",
"icon": "fable_logo.png",
"version": "0.0.0",
"publisher": "alfonsogarciacaro",
"license": "MIT",
"repository": {
"url": "https://github.com/fable-compiler/fable-vscode-extension.git"
},
"bugs": {
"url": "https://github.com/fable-compiler/fable-vscode-extension/issues"
},
"engines": {
"vscode": "^1.43.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:fable.sayHello"
],
"main": "./dist/main.js",
"contributes": {
"commands": [
{
"command": "fable.sayHello",
"title": "Say Hello from Fable!"
}
]
},
"scripts": {
"install": "dotnet tool restore",
"build": "dotnet fable src -o build --run npm run esbuild",
"start": "dotnet fable watch src -s -o build --run npm run esbuild -- --watch",
"esbuild": "esbuild ./build/Main.js --bundle --outfile=dist/main.js --external:vscode --format=cjs --platform=node --sourcemap",
"prepack": "npm run build",
"pack": "vsce package"
},
"dependencies": {
"ionide-vscode-helpers": "ionide/ionide-vscode-helpers"
},
"devDependencies": {
"esbuild": "^0.13.8"
}
}