-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdeno.json
More file actions
32 lines (32 loc) · 766 Bytes
/
deno.json
File metadata and controls
32 lines (32 loc) · 766 Bytes
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
{
"name": "@runt/schema",
"version": "0.13.0",
"description": "Anode schema for runtime agents and clients",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/runtimed/anode.git"
},
"exports": {
".": "./mod.ts",
"./types": "./types.ts",
"./tables": "./tables.ts",
"./queries": "./queries/index.ts"
},
"publish": {
"include": ["mod.ts", "types.ts", "tables.ts", "queries/", "README.md"]
},
"compilerOptions": {
"strict": true,
"lib": ["ESNext", "DOM"]
},
"imports": {
"@livestore/livestore": "npm:@livestore/livestore@^0.3.1",
"fractional-indexing": "npm:fractional-indexing@^3.2.0"
},
"lint": {
"rules": {
"exclude": ["no-slow-types"]
}
}
}