-
Notifications
You must be signed in to change notification settings - Fork 17
/
deno.jsonc
37 lines (37 loc) · 988 Bytes
/
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
{
"name": "@astral/astral",
"version": "0.4.9",
"exports": "./mod.ts",
"tasks": {
// The task to automatically generate `./src/celestial.ts`
"bind": "deno run -A ./bindings/_tools/generate/mod.ts && deno fmt",
"test": "deno test -A --trace-leaks",
"bench": "deno bench -A",
"www": "cd docs && pyro dev"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "https://esm.sh/[email protected]"
},
"lock": false,
"imports": {
"@deno-library/progress": "jsr:@deno-library/progress@^1.5.1",
"@std/assert": "jsr:@std/assert@^1",
"@std/async": "jsr:@std/async@^1",
"@std/fs": "jsr:@std/fs@^1",
"@std/path": "jsr:@std/path@^1",
"@std/testing": "jsr:@std/testing@^1",
"@zip-js/zip-js": "jsr:@zip-js/zip-js@^2.7.52"
},
"publish": {
"include": [
"LICENSE",
"README.md",
"deno.jsonc",
"mod.ts",
"src/**/*.ts",
"docs/static/icon.png",
"bindings/celestial.ts"
]
}
}