-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathdeno.json
45 lines (45 loc) · 1.48 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"imports": {
"@bridge-editor/common-utils": "npm:@bridge-editor/common-utils@^0.3.3",
"@bridge-editor/mc-project-core": "npm:@bridge-editor/mc-project-core@^0.5.0-alpha.2",
"@std/async": "jsr:@std/async@^1.0.7",
"@std/path": "jsr:@std/path@^1.0.7",
"@std/semver": "jsr:@std/semver@^1.0.3",
"dash-compiler-local": "../dash-compiler/dist/dash-compiler.bundled.es.js"
},
"version": "1.1.0-alpha",
"tasks": {
"install": "deno install --global -A -f -n dash_compiler ./mod.ts",
"install:full": "deno install --global -A --reload -f -n dash_compiler ./mod.ts",
"build": "deno task build:apple-x86 && deno task build:apple-aarch64 && deno task build:windows-x86",
"build:apple-x86": "deno compile --target x86_64-apple-darwin --output ./executables/dash-apple-x64 -A ./mod.ts",
"build:apple-aarch64": "deno compile --target aarch64-apple-darwin --output ./executables/dash-apple-aarch64 -A ./mod.ts",
"build:windows-x86": "deno compile --target x86_64-pc-windows-msvc --output ./executables/dash.exe -A ./mod.ts"
},
"fmt": {
"include": ["*.json", "*.ts", "*.tsx", "src/"],
"exclude": ["dist/", ".vscode/", ".github/", "README.md", "deno.lock"],
"useTabs": true,
"lineWidth": 120,
"semiColons": true,
"indentWidth": 4,
"singleQuote": false
},
"lint": {
"include": [
"*.ts",
"src/",
"mod.ts"
],
"exclude": [
"dist/",
".vscode/",
".github/"
],
"rules": {
"tags": ["recommended"],
"include": ["ban-untagged-todo"],
"exclude": []
}
}
}