-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
45 lines (45 loc) · 1.73 KB
/
Copy pathdeno.json
File metadata and controls
45 lines (45 loc) · 1.73 KB
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
38
39
40
41
42
43
44
45
{
"name": "@edimuj/scribe-mcp",
"version": "0.1.0",
"exports": "./src/main.ts",
"tasks": {
"dev": "deno run --watch -A src/main.ts",
"start": "deno run -A src/main.ts",
"check": "deno check src/main.ts",
"lint": "deno lint src/"
},
"imports": {
"@/": "./lib/",
"@lib/": "./lib/src/",
"@lib/worker/bgWorker.ts": "./lib/src/worker/bgWorker.mock.ts",
"./lib/src/worker/bgWorker.ts": "./lib/src/worker/bgWorker.mock.ts",
"./lib/src/worker/bgWorker": "./lib/src/worker/bgWorker.mock.ts",
"octagonal-wheels": "npm:octagonal-wheels@^0.1.39",
"octagonal-wheels/": "npm:/octagonal-wheels@^0.1.39/",
"xxhash-wasm-102": "npm:xxhash-wasm@^1.0.2",
"crypto": "node:crypto",
"minimatch": "npm:minimatch",
"fflate": "npm:fflate@^0.8.2",
"pouchdb-core": "npm:pouchdb-core@^9.0.0",
"pouchdb-adapter-http": "npm:pouchdb-adapter-http@^9.0.0",
"pouchdb-replication": "npm:pouchdb-replication@^9.0.0",
"pouchdb-find": "npm:pouchdb-find@^9.0.0",
"pouchdb-merge": "npm:pouchdb-merge@^9.0.0",
"pouchdb-utils": "npm:pouchdb-utils@^9.0.0",
"pouchdb-errors": "npm:pouchdb-errors@^9.0.0",
"pouchdb-mapreduce": "npm:pouchdb-mapreduce@^9.0.0",
"transform-pouch": "npm:transform-pouch@^2.0.0",
"diff-match-patch": "npm:diff-match-patch@^1.0.5",
"@types/diff-match-patch": "npm:@types/diff-match-patch@^1.0.36",
"@modelcontextprotocol/sdk": "npm:@modelcontextprotocol/sdk@^1.12.1",
"@modelcontextprotocol/sdk/": "npm:/@modelcontextprotocol/sdk@^1.12.1/",
"zod": "npm:zod@^3.24.0"
},
"nodeModulesDir": "auto",
"unstable": ["bare-node-builtins", "sloppy-imports", "byonm"],
"lint": {
"rules": {
"exclude": ["no-explicit-any", "ban-ts-comment"]
}
}
}