-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 909 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 909 Bytes
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
{
"name": "echidna-ui",
"version": "0.1.0",
"description": "ECHIDNA Neurosymbolic Theorem Proving Platform - ReScript UI",
"license": "AGPL-3.0-or-later",
"type": "module",
"scripts": {
"res:build": "rescript build",
"res:dev": "rescript build -w",
"res:clean": "rescript clean",
"dev": "deno run --allow-net --allow-read --allow-env --watch src/Server.bs.js",
"build": "rescript build",
"serve": "deno run --allow-net --allow-read --allow-env src/Server.bs.js",
"check": "rescript build && deno check src/Main.bs.js"
},
"keywords": [
"theorem-proving",
"neurosymbolic",
"rescript",
"deno",
"proof-assistant"
],
"devDependencies": {
"@rescript/core": "^1.2.0",
"@rescript/react": "^0.13.1",
"rescript": "^12.0.0"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rescript-webapi": "^0.10.0"
}
}