-
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) · 1.42 KB
/
Copy pathdeno.json
File metadata and controls
31 lines (31 loc) · 1.42 KB
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
{
"tasks": {
"build": "deno run -A npm:rescript",
"clean": "deno run -A npm:rescript clean",
"watch": "deno run -A npm:rescript -w",
"build:all": "deno task k9:validate && deno task a2ml:render && deno task proofs:generate && deno task build",
"k9:validate": "nickel typecheck config/metadata.k9.ncl && nickel typecheck config/ci.k9.ncl",
"k9:export": "nickel export config/metadata.k9.ncl > metadata.json",
"a2ml:render": "deno run -A --config ../a2ml/prototype/rescript/deno.json ../a2ml/prototype/rescript/src/Cli.bs.js render content/about.a2ml --out public/about.html",
"a2ml:validate": "cd ../a2ml && just cli validate ../avow-protocol/content/*.a2ml",
"proofs:generate": "deno run -A scripts/GenerateProof.res.js",
"sync:6scm": "bash scripts/sync-6scm.sh",
"check:6scm": "bash scripts/check-6scm.sh",
"serve": "deno run -A jsr:@std/http/file-server ."
},
"imports": {
"rescript": "npm:rescript@^12.1.0",
"@rescript/core": "npm:@rescript/core@^1.6.0",
"@rescript/react": "npm:@rescript/react@^0.12.0",
"react": "npm:react@^18.3.0",
"react-dom": "npm:react-dom@^18.3.0",
"rescript-tea/": "../rescript-tea/src/",
"cadre-router/": "../cadre-router/src/",
"cadre-tea-router/": "../cadre-tea-router/src/",
"rescript-dom-mounter/": "../rescript-dom-mounter/src/",
"proven/": "../proven/bindings/rescript/src/"
},
"compilerOptions": {
"checkJs": false
}
}