-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdeno.json
More file actions
55 lines (55 loc) · 1.81 KB
/
deno.json
File metadata and controls
55 lines (55 loc) · 1.81 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
51
52
53
54
55
{
"name": "@runt/tui",
"version": "0.13.0",
"description": "A powerful terminal-based notebook interface for Runt runtime agents, enabling interactive editing, execution, and real-time collaboration.",
"license": "BSD-3-Clause",
"exports": {
".": "./src/cli.tsx"
},
"bin": {
"runt-tui": "./src/cli.tsx"
},
"compat": {
"deno": ">=2.4.2",
"node": true,
"bun": true
},
"tasks": {
"dev": "deno run --allow-net --allow-env --allow-read --allow-write --allow-sys --quiet src/cli.tsx",
"test": "deno test --allow-env --allow-net --allow-read --allow-write --allow-sys",
"check": "deno check src/*.ts src/*.tsx",
"fmt": "deno fmt",
"lint": "deno lint"
},
"imports": {
"@runt/schema": "jsr:@runt/schema@^0.13.0",
"@runt/lib": "jsr:@runt/lib@^0.13.0",
"@runt/ai": "jsr:@runt/ai@^0.13.0",
"@inkjs/ui": "npm:@inkjs/ui@^2.0.0",
"@livestore/adapter-node": "npm:@livestore/adapter-node@^0.3.1",
"@livestore/livestore": "npm:@livestore/livestore@^0.3.1",
"@livestore/react": "npm:@livestore/react@^0.3.1",
"@livestore/sync-cf": "npm:@livestore/sync-cf@^0.3.1",
"effect": "npm:effect@~3.15.2",
"dotenv": "npm:dotenv@^16.4.5",
"ink": "npm:ink@^6.0.1",
"ink-link": "npm:ink-link@^4.0.0",
"lowlight": "npm:lowlight@^3.3.0",
"meow": "npm:meow@^11.0.0",
"react": "npm:react@19.1.0",
"string-width": "npm:string-width@^7.2.0",
"@types/react": "npm:@types/react@19.1.0",
"chalk": "npm:chalk@^5.2.0",
"react/jsx-runtime": "npm:react@19.1.0/jsx-runtime"
},
"compilerOptions": {
"jsx": "react",
"strict": false,
"noImplicitAny": false,
"lib": ["dom", "dom.iterable", "es2022", "deno.ns"]
},
"publish": {
"include": ["src/", "README.md", "LICENSE"],
"exclude": ["src/**/*.test.ts", "src/**/*.test.tsx"]
}
}