-
-
Notifications
You must be signed in to change notification settings - Fork 664
/
deno.json
30 lines (30 loc) · 1.26 KB
/
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
{
"version": "2.0.0-alpha.1",
"tasks": {
"dev": "deno run --env-file --allow-all src/index.ts",
"dev:skip-full-sync": "deno task dev --skip-full-sync",
"worker": "deno run --env-file --allow-all src/worker.ts",
"full-sync": "deno run --env-file --allow-all scripts/full-sync.ts",
"manual-process": "deno run --env-file --allow-all scripts/manual-process.ts",
"hook": "deno run --allow-read --allow-run --allow-write https://deno.land/x/[email protected]/mod.ts",
"install-hooks": "deno task hook install",
"test": "deno test --allow-net --allow-env --allow-read",
"check": "deno lint && deno fmt --check && deno check ."
},
"imports": {
"@/": "./",
"@octokit/plugin-rest-endpoint-methods": "npm:@octokit/plugin-rest-endpoint-methods@^13.2.6",
"@probot/pino": "npm:@probot/pino@^2.5.0",
"@std/assert": "jsr:@std/assert@1",
"@std/http": "jsr:@std/http@1",
"@wei/pluralize": "jsr:@wei/pluralize@^8.0.2",
"@wei/probot-scheduler": "jsr:@wei/[email protected]",
"bullmq": "npm:bullmq@^5.26.2",
"express": "npm:express@^4.21.1",
"ioredis": "npm:ioredis@^5.4.1",
"mongoose": "npm:mongoose@^8.8.1",
"pino": "npm:pino@^9.5.0",
"probot": "npm:probot@^13.4.0",
"zod": "npm:zod@^3.23.8"
}
}