-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.02 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
{
"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\"",
"start": "esy build && esy x App"
},
"esy": {
"build": "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": {
"@glennsl/timber": "^1.2.0",
"@opam/dune": "2.5.0",
"esy-macdylibbundler": "*",
"reason-fontkit": "^2.8.0",
"revery": "revery-ui/revery#8fd380c"
},
"devDependencies": {
"ocaml": "~4.9.0",
"@opam/ocaml-lsp-server": "ocaml/ocaml-lsp:ocaml-lsp-server.opam#04733ed"
}
}