-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.53 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.53 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
56
57
58
59
60
61
{
"name": "effect-devtui",
"version": "0.4.6",
"description": "Terminal UI for Effect DevTools",
"keywords": [
"effect",
"devtools",
"tui",
"terminal",
"debugging"
],
"license": "MIT",
"author": "Daniel F Gray",
"repository": {
"type": "git",
"url": "git+https://github.com/DanielFGray/effect-devtui.git"
},
"bugs": {
"url": "https://github.com/DanielFGray/effect-devtui/issues"
},
"homepage": "https://github.com/DanielFGray/effect-devtui#readme",
"type": "module",
"files": [
"dist",
"bin"
],
"bin": {
"effect-devtui": "./bin/effect-devtui"
},
"scripts": {
"dev": "bun --hot --conditions=browser src/index.tsx",
"build": "./build.ts",
"build:npm": "./build-npm.ts",
"build:single": "./build.ts --single",
"start": "bun --watch --conditions=browser src/index.tsx",
"client": "bun example/client.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@effect/ai": "^0.32.1",
"@effect/experimental": "^0.58.0",
"@effect/language-service": "^0.76.0",
"@effect/platform": "^0.94.5",
"@effect/platform-bun": "^0.87.1",
"@effect/platform-node": "^0.104.1",
"@effect/rpc": "^0.73.2",
"@opentui/core": "^0.1.82",
"@opentui/solid": "^0.1.82",
"beautiful-mermaid": "^0.1.3",
"effect": "^3.19.19",
"recast": "^0.23.11",
"solid-js": "1.9.9",
"ws": "^8.18.3"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "~24.1.0",
"@types/ws": "^8.18.1",
"typescript": "^5.9.3"
}
}