-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.4 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.4 KB
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": "ReasonLanguageServer",
"version": "0.0.0-dont-publish",
"private": true,
"scripts": {
"cp-test": "cp #{self.target_dir}/default/src/analyze_example_tests/ExamplesTests.exe ExamplesTests.exe",
"package": "esy build && esy cp \"#{self.target_dir}/default/bin/Bin.exe\" editor-extensions/vscode/bin.native",
"zip": "./release.sh",
"vsce": "cd editor-extensions/vscode && vsce package",
"reprocess-ocaml": "(cd process_ocaml; ./build.sh); esy",
"symlink": "esy ln -s '#{self.target_dir}/install/default/bin/Bin' bin.exe",
"cp-bin": "cp \"#{self.target_dir}/default/bin/Bin.exe\" bin.exe",
"run-codemod": "./_build/install/default/bin/ExampleCodemod.exe ./examples/example-codemod",
"types": "./_esy/default/build/install/default/bin/type-digger type-digger/types.json"
},
"keywords": [
"Reason",
"lsp",
"IDE"
],
"repository": {
"url": "jaredly/reason-language-server",
"type": "git"
},
"description": "A pure-reason implementation of a language server",
"author": "Jared Forsyth",
"license": "ISC",
"esy": {
"build": "dune build -p #{self.name}",
"buildsInSource": "_build"
},
"dependencies": {
"@opam/dune": "*",
"@esy-ocaml/reason": "*",
"@opam/ocaml-migrate-parsetree": "*",
"@opam/ppx_tools_versioned": "*",
"@opam/ppx_tools": "*",
"@opam/ppxlib": "*",
"rex-json": "*",
"ocaml": "~4.7.2"
}
}