-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
39 lines (39 loc) · 1020 Bytes
/
deno.json
File metadata and controls
39 lines (39 loc) · 1020 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
34
35
36
37
38
39
{
"version": "0.6.3",
"author": "90dy",
"license": "MIT",
"workspace": [
"src/core",
"src/gen",
"vscode-extension"
],
"tasks": {
"dev": "deno run --watch main.ts",
"test": "deno test -A",
"build:extension": "cd vscode-extension && vsce package",
"build:npm": "deno run -A build_npm.ts",
"demo": "deno run main.ts",
"generate:syntaxes": "cd vscode-extension && deno run --allow-read --allow-write generate-syntaxes.ts",
"gen": "deno run -A src/gen/main.ts"
},
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.13",
"@deno/dnt": "jsr:@deno/dnt@^0.41.3",
"@std/path": "jsr:@std/path@^1.0.9",
"@std/yaml": "jsr:@std/yaml@^1.0.6",
"@std/fs": "jsr:@std/fs@^1.0.0"
},
"description": "TypeScript template engine monorepo",
"repository": {
"type": "git",
"url": "https://github.com/90dy/typescript-template-engine"
},
"lint": {
"rules": {
"exclude": [
"no-unused-vars",
"no-unused-labels"
]
}
}
}