-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.01 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
{
"name": "rescript-vscode-extension-template",
"displayName": "rescript-vscode-extension-template",
"description": "VSCode Extension project template for Rescript language",
"version": "0.0.1",
"publisher": "Lauri Laaksonen",
"license": "MIT",
"repository": {
"url": "https://www.github.com:laaksonel/rescript-vscode-extension-template"
},
"engines": {
"vscode": "^1.63.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:rescript-vscode-extension-template.helloWorld"
],
"main": "./lib/js/src/extension.bs.js",
"contributes": {
"commands": [{
"command": "rescript-vscode-extension-template.helloWorld",
"title": "Hello World"
}]
},
"keywords": [
"rescript"
],
"scripts": {
"build": "rescript",
"clean": "rescript clean -with-deps",
"start": "rescript build -w"
},
"dependencies": {
"reason-promise": "^1.1.5",
"rescript": "*"
},
"devDependencies": {
"rescript-vscode": "github:banacorn/rescript-vscode"
}
}