-
Notifications
You must be signed in to change notification settings - Fork 84
/
package.json
38 lines (38 loc) · 1.36 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
{
"name": "reason-language-server",
"version": "1.0.0",
"scripts": {
"cp-test":
"cp #{self.target_dir}/install/default/bin/RunTests.exe RunTests.exe",
"package":
"esy build && esy cp \"#{self.target_dir}/default/bin/Bin.exe\" editor-extensions/vscode/bin.native",
"zip": "./release.sh",
"check-self-definitions":
"fd -E examples '.*\\.re$' | xargs ./bin.exe check -q -d .",
"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}/install/default/bin/Bin bin.exe"
},
"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}" },
"dependencies": {
"@opam/ANSITerminal": "0.8.1",
"@opam/dune": "*",
"@opam/ocaml-migrate-parsetree": ">= 1.3.1",
"@opam/ppx_tools_versioned": "*",
"@opam/ppxlib": "*",
"@opam/reason": ">= 3.5.0",
"@opam/stdlib-shims": "*",
"@opam/uri": "3.1.0",
"@reason-native/pastel": "^0.2.2",
"@reason-native/rely": "^3.1.0",
"ocaml": "~4.8.1000",
"rex-json": "*"
}
}