-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdeno.json
More file actions
50 lines (50 loc) · 1.15 KB
/
deno.json
File metadata and controls
50 lines (50 loc) · 1.15 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
46
47
48
49
50
{
"name": "@runt/python-runtime-agent",
"version": "0.13.0",
"description": "Stub Python runtime agent for Runt platform.",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/runtimed/anode.git"
},
"exports": {
".": "./mod.ts"
},
"bin": {
"pyrunt": "./mod.ts"
},
"imports": {
"@runtimed/agent-core": "jsr:@runtimed/agent-core@^0.3.0",
"@runt/schema": "jsr:@runt/schema@^0.13.0",
"npm:@livestore/adapter-web": "npm:@livestore/adapter-web@^0.3.1"
},
"tasks": {
"test": "deno test --allow-all",
"check": "deno check src/**/*.ts",
"fmt": "deno fmt",
"lint": "deno lint"
},
"compilerOptions": {
"strict": true,
"exactOptionalPropertyTypes": true,
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true
},
"fmt": {
"useTabs": false,
"lineWidth": 80,
"indentWidth": 2,
"semiColons": true,
"singleQuote": false,
"proseWrap": "preserve"
},
"lint": {
"rules": {
"tags": ["recommended"]
}
},
"publish": {
"include": ["mod.ts", "src/", "README.md"],
"exclude": ["**/*.test.ts", "**/test_*.ts"]
}
}