-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.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
{
"name": "dune-deprecated",
"displayName": "Dune (deprecated)",
"description": "Dune, the OCaml & Reason build system (previously Jbuilder)",
"version": "0.0.7",
"publisher": "maelvalais",
"repository": "https://github.com/maelvls/vscode-dune",
"icon": "images/dune.png",
"license": "MIT",
"engines": {
"vscode": "^1.6.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"configuration": {
"title": "Dune configuration",
"properties": {
"dune.path": {
"type": "string",
"default": "dune",
"description": "Path to dune."
},
"dune.lintOnChange": {
"type": "boolean",
"default": true,
"description": "Do lint when made changes."
},
"dune.lintOnSave": {
"type": "boolean",
"default": true,
"description": "Do lint when save document."
},
"dune.lintDelay": {
"type": "number",
"default": 500,
"description": "Time to delay lint when made changes."
},
"dune.enableLint": {
"type": "boolean",
"default": true,
"description": "Enable the linter using dune."
}
}
},
"languages": [
{
"id": "dune",
"aliases": [
"Dune",
"Jbuilder"
],
"extensions": [
"dune-project",
"dune",
"jbuild"
],
"configuration": "./dune.configuration.json"
}
],
"grammars": [
{
"language": "dune",
"scopeName": "source.dune",
"path": "./syntaxes/Dune.tmLanguage"
}
]
},
"scripts": {
"vscode:prepublish": "node ./node_modules/typescript/bin/tsc",
"compile": "node ./node_modules/typescript/bin/tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"start": "node build.js -w"
},
"devDependencies": {
"@types/node": "^12.12.14",
"glob-watcher": "latest",
"js-yaml": "^3.13.1",
"plist": "latest",
"typescript": "^3.7.3",
"vscode": "^1.1.36"
},
"dependencies": {
"get-stream": "^5.1.0"
},
"__metadata": {
"id": "6e49f289-d7d7-43ce-95f1-0c00f375e1f6",
"publisherDisplayName": "maelvalais",
"publisherId": "3f5c0d22-1c86-4a4a-89cf-469106f50752"
}
}