-
Notifications
You must be signed in to change notification settings - Fork 6
/
deno.jsonc
28 lines (28 loc) · 1.22 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
{
"tasks": {
"dev": "deno run --unstable --watch -A main.ts",
"run": "deno run --unstable -A main.ts"
},
"imports": {
"../worker/splitWorker.ts": "../worker/splitWorker.mock.ts",
"./lib/src/worker/splitWorker.ts": "./lib/src/worker/splitWorker.mock.ts",
"xxhash-wasm-102": "npm:xxhash-wasm@^1.0.2",
"crypto": "node:crypto",
"minimatch": "npm:minimatch",
"octagonal-wheels/": "npm:/octagonal-wheels@^0.1.12/",
"fflate": "npm:fflate@^0.8.2",
"fs/": "https://deno.land/[email protected]/fs/",
"pouchdb-core": "npm:pouchdb-core@^8.0.1",
"pouchdb-adapter-http": "npm:pouchdb-adapter-http@^8.0.1",
"pouchdb-replication": "npm:pouchdb-replication@^8.0.1",
"pouchdb-find": "npm:pouchdb-find@^8.0.1",
"pouchdb-merge": "npm:pouchdb-merge@^8.0.1",
"pouchdb-utils": "npm:pouchdb-utils@^8.0.1",
"pouchdb-errors": "npm:pouchdb-errors@^8.0.1",
"pouchdb-mapreduce": "npm:pouchdb-mapreduce@^8.0.1",
"transform-pouch": "npm:transform-pouch@^2.0.0",
"chokidar": "npm:chokidar@^3.5.1",
"debounce": "https://deno.land/[email protected]/async/debounce.ts"
},
"unstable": ["sloppy-imports"]
}