-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
31 lines (31 loc) · 884 Bytes
/
Copy pathdeno.json
File metadata and controls
31 lines (31 loc) · 884 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
{
"name": "nesy-solver",
"version": "0.1.0",
"description": "Live proof playground for neurosymbolic theorem provers",
"license": "MPL-2.0",
"exports": "./server.js",
"tasks": {
"dev": "deno run --allow-net --allow-read --allow-env server.js",
"build": "echo 'ReScript build: rescript build (wire in E1.5)' && mkdir -p dist && cp index.html dist/ && cp -r public dist/",
"test": "deno test --allow-net --allow-read",
"fmt": "deno fmt server.js public/*.js",
"lint": "deno lint server.js"
},
"imports": {
"@std/http": "jsr:@std/http@^1.0.0",
"@std/path": "jsr:@std/path@^1.0.0",
"@std/fs": "jsr:@std/fs@^1.0.0",
"@std/assert": "jsr:@std/assert@^1.0.0"
},
"fmt": {
"lineWidth": 100,
"indentWidth": 2,
"singleQuote": false,
"useTabs": false
},
"lint": {
"rules": {
"tags": ["recommended"]
}
}
}