-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
29 lines (29 loc) · 871 Bytes
/
deno.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
{
"name": "@inro/lang-traindown",
"version": "1.2.1",
"compilerOptions": {
"strict": true,
"useUnknownInCatchVariables": true,
"noImplicitOverride": true,
"lib": ["dom", "es2023", "deno.ns"]
},
"fmt": {
"proseWrap": "never",
"singleQuote": true,
"semiColons": false,
"exclude": ["./parser.js", "parser.terms.js"]
},
"imports": {
"@codemirror/language": "npm:@codemirror/language@6.10.1",
"@lezer/lr": "npm:@lezer/lr@1.4.0",
"@lezer/highlight": "npm:@lezer/highlight@1.2.0"
},
"exports": {
".": "./mod.ts"
},
"tasks": {
"build": "deno run --allow-read --allow-write npm:@lezer/generator@1.7.0 ./traindown.grammar -o ./parser.js",
"start": "deno run --allow-net --allow-read https://deno.land/std/http/file_server.ts .",
"test": "deno fmt && deno lint && deno task build && deno test"
}
}