-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
59 lines (59 loc) · 1.32 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
{
"name": "revery-terminal",
"version": "1.0.0",
"description": "Terminal emulator built with Revery",
"license": "MIT",
"esy": {
"build": "dune build -p revery-terminal",
"install": [
"esy-installer revery-terminal.install"
]
},
"revery-packager": {
"bundleName": "ExampleApp",
"bundleId": "com.example.app",
"displayName": "Revery Example App",
"mainExecutable": "App",
"windows": {
"packages": [
"zip"
],
"iconFile": "assets/icon.ico"
},
"darwin": {
"packages": [
"tar",
"dmg"
],
"iconFile": "assets/icon.icns"
},
"linux": {
"packages": [
"tar",
"appimage"
]
}
},
"dependencies": {
"revery": "0.29.0",
"isolinear": "^3.0.0",
"@revery/timber": "^2.0.0",
"@onivim/reason-native-crash-utils": "^1.0.0",
"@revery/esy-libvterm": "^1.0.5"
},
"resolutions": {
"revery": "revery-ui/revery#e0c12e7",
"isolinear": "revery-ui/isolinear#8cad3b0"
},
"scripts": {
"format": "esy dune build @fmt --auto-promote",
"run": "esy x App"
},
"devDependencies": {
"ocaml": "4.10.0",
"@opam/dune": ">=2.5.0",
"@opam/merlin": "*",
"esy-macdylibbundler": "*",
"@opam/ocaml-lsp-server": "ocaml/ocaml-lsp:ocaml-lsp-server.opam#efedf8d6a"
}
}