This repository has been archived by the owner on Feb 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.52 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": "reasonable-planner",
"version": "1.3.0",
"description": "Revery quickstart",
"license": "MIT",
"scripts": {
"format": "bash -c \"refmt --in-place *.re\"",
"run": "esy x AppExe"
},
"esy": {
"build": "refmterr dune build -p AppExe",
"buildsInSource": "_build",
"install": [
"esy-installer AppExe.install"
]
},
"revery-packager": {
"bundleName": "ExampleApp",
"bundleId": "com.example.app",
"displayName": "Revery Example App",
"mainExecutable": "AppExe",
"windows": {
"packages": [
"zip"
],
"iconFile": "assets/icon.ico"
},
"darwin": {
"packages": [
"tar",
"dmg"
],
"iconFile": "assets/icon.icns"
},
"linux": {
"packages": [
"tar",
"appimage"
]
}
},
"dependencies": {
"@esy-ocaml/libffi": "3.2.10",
"@opam/dune": "*",
"re-light-router": "^0.1.3",
"revery": "0.30.0",
"timber": "1.0.0"
},
"resolutions": {
"@opam/cmdliner": "1.0.2",
"esy-cmake": "prometheansacrifice/esy-cmake#2a47392def755",
"revery": "revery-ui/revery#3c233048c39451a900a4f6b9a05090c43211a9f2",
"@esy-ocaml/libffi": "esy-ocaml/libffi#c61127d"
},
"devDependencies": {
"ocaml": "~4.8.0",
"@opam/merlin": "*"
}
}