-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdeno.json
More file actions
50 lines (50 loc) · 1.34 KB
/
deno.json
File metadata and controls
50 lines (50 loc) · 1.34 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"version": "10.0.5",
"name": "@xeaone/element",
"exports": "./module/index.ts",
"nodeModulesDir": "none",
"compilerOptions": {
"lib": [
"dom",
"deno.ns",
"deno.unstable"
]
},
"lint": {
"include": [
"scripts",
"source",
"client"
]
},
"fmt": {
"include": [
"scripts",
"source",
"client"
],
"useTabs": false,
"lineWidth": 500,
"indentWidth": 4,
"singleQuote": true,
"proseWrap": "preserve"
},
"tasks": {
"d": "deno run -A scripts/deploy.ts",
"w": "deno run -A scripts/watch.ts",
"b": "deno run -A scripts/build.ts",
"t": "deno test -A scripts/test.ts --unstable-sloppy-imports",
"watch-idea": "deno run -A scripts/watch-idea.ts",
"watch-virtual": "deno run -A scripts/watch-virtual.ts"
},
"imports": {
"@b-fuze/deno-dom": "jsr:@b-fuze/deno-dom@^0.1.49",
"@std/assert": "jsr:@std/assert@^1.0.11",
"@std/async": "jsr:@std/async@^1.0.11",
"@std/fs": "jsr:@std/fs@^1.0.14",
"@std/path": "jsr:@std/path@^1.0.8",
"@std/semver": "jsr:@std/semver@^1.0.4",
"@esbuild": "npm:esbuild@0.25.0",
"@linkedom": "npm:linkedom"
}
}