-
Notifications
You must be signed in to change notification settings - Fork 2
/
deno.json
36 lines (36 loc) · 965 Bytes
/
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
{
"name": "github_aid_ts",
"version": "0.1.2",
"description": "Displays github repository file and folder sizes. Supports GraphQL and REST api modes. Also mobile friendly.",
"author": "Omar Azmi",
"license": "Anti-Competition License",
"repository": {
"type": "git",
"url": "git+https://github.com/omar-azmi/github_aid_ts.git"
},
"bugs": {
"url": "https://github.com/omar-azmi/github_aid_ts/issues"
},
"compilerOptions": {
"lib": [
"esnext",
"dom",
"deno.ns"
],
"strict": true,
"allowJs": true
},
"devDependencies": {
"typescript": "^5.0.0",
"esbuild": "^0.17.19"
},
"node_packageManager": "npm",
"tasks": {
"build-1": "deno run -A ./build_1.ts",
"build-2": "deno run -A ./build_2.ts",
"build-all": "deno task build-1 && deno task build-2",
"build-all-log-only": "deno task build-1 --log-only && deno task build-2 --log-only",
"build-docs": "deno run -A ./build_docs.ts",
"clean": "deno run -A ./clean.ts"
}
}