-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
50 lines (50 loc) · 1.15 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
{
"name": "revery-quick-start",
"version": "1.4.1",
"description": "A template for getting started with Revery",
"license": "MIT",
"scripts": {
"format": "bash -c \"refmt --in-place **/*.re\"",
"run": "esy x App"
},
"esy": {
"build": "dune build -p App",
"buildDev": "refmterr dune build -p App",
"buildsInSource": "_build"
},
"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": "revery-ui/revery#431e515a00ee46f7bc614a10c2a219aae13179e0",
"@opam/dune": "2.6.0",
"@revery/timber": "*",
"esy-macdylibbundler": "*"
},
"devDependencies": {
"ocaml": "~4.9.0",
"@opam/ocaml-lsp-server": "ocaml/ocaml-lsp:ocaml-lsp-server.opam#cb8aba2238ba5b0e5a6fe0a3180f25077496f75a"
}
}