forked from lino-levan/astral
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.jsonc
37 lines (37 loc) · 1012 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.2",
"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/[email protected]",
"@std/assert": "jsr:@std/[email protected]",
"@std/async": "jsr:@std/[email protected]",
"@std/fs": "jsr:@std/[email protected]",
"@std/path": "jsr:@std/[email protected]",
"@std/testing": "jsr:@std/testing@^0.223.0",
"@zip-js/zip-js": "jsr:@zip-js/[email protected]"
},
"publish": {
"include": [
"LICENSE",
"README.md",
"deno.jsonc",
"mod.ts",
"src/**/*.ts",
"docs/static/icon.png",
"bindings/celestial.ts"
]
}
}