generated from codemonument/deno_module_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.jsonc
66 lines (66 loc) · 1.87 KB
/
deno.jsonc
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/**
* Deno Config File
* - jsonc = JSON with comments
* - can be expanded as needed to configure integrated tsc, linter and formatter
*
* Docs for Deno Tasks: https://deno.land/manual@v1.27.1/tools/task_runner
*
* IMPORTANT:
* Only use import_map.json for testing dependencies & docs page,
* since it will not be resolved when mod.ts is used as library from outside!
*/
{
"name": "@codemonument/rx-webstreams",
"version": "0.9.4",
"exports": {
".": "./mod.ts"
},
"compilerOptions": {
"strict": true,
"jsx": "react-jsx",
"jsxImportSource": "preact",
"lib": [
"deno.window",
"dom"
]
},
"test": {
"include": ["tests", "lib"]
},
"tasks": {
"docs": "deno run -A --watch=docs/static/,docs/routes/ docs/dev.ts",
"docs-prod": "deno run -A docs/main.ts",
"test": "deno test --allow-read",
"testu": "deno test -A -- --update",
// publishing tasks
"version": "deno run -A ./scripts/update-version.ts",
"dry": "deno publish --dry-run",
"publish": "deno publish"
},
"imports": {
"@codemonument/update-denoconfig": "jsr:@codemonument/update-denoconfig@^1.0.6",
"@codemonument/zod-semver": "jsr:@codemonument/zod-semver@^1.3.8",
"@mod": "./mod.ts",
"@version": "./version.ts",
"@deps/": "./deps/",
"@testutils/": "./tests/_testutils/",
"@docs/": "./docs/",
"$fresh/": "https://deno.land/x/fresh@1.1.2/",
"preact": "https://esm.sh/preact@10.11.0",
"preact/": "https://esm.sh/preact@10.11.0/",
"preact-render-to-string": "https://esm.sh/*preact-render-to-string@5.2.4",
"@preact/signals": "https://esm.sh/*@preact/signals@1.0.3",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.0.1"
},
"publish": {
"include": [
"deno.jsonc",
"README.md",
"CHANGELOG.md",
"VERSION.ts",
"mod.ts",
"lib/",
"deps/"
]
}
}