-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.1 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.1 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "fragment",
"version": "0.0.1",
"bin": {
"fragment": "./bin/fragment.ts"
},
"type": "module",
"scripts": {
"build": "tsc -b",
"test": "bun test ./test",
"test:tui": "bun test --preload @opentui/solid/preload ./test/tui/ --",
"test:tui:update": "bun test --preload @opentui/solid/preload ./test/tui/ --update-snapshots",
"test:watch": "bun test ./test --watch",
"download:env": "doppler secrets download --no-file --format env > .env"
},
"exports": {
".": {
"bun": "./src/index.ts",
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./file": {
"bun": "./src/file/index.ts",
"types": "./lib/file/index.d.ts",
"default": "./lib/file/index.js"
},
"./tool": {
"bun": "./src/tool/index.ts",
"types": "./lib/tool/index.d.ts",
"default": "./lib/tool/index.js"
},
"./toolkit": {
"bun": "./src/toolkit/index.ts",
"types": "./lib/toolkit/index.d.ts",
"default": "./lib/toolkit/index.js"
},
"./tui": {
"bun": "./src/tui/index.tsx",
"types": "./lib/tui/index.d.ts",
"default": "./lib/tui/index.js"
},
"./github": {
"bun": "./src/github/index.ts",
"types": "./lib/github/index.d.ts",
"default": "./lib/github/index.js"
}
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@effect/ai": "latest",
"@effect/ai-anthropic": "latest",
"@effect/ai-openai": "latest",
"@effect/cli": "latest",
"@effect/experimental": "latest",
"@effect/platform": "latest",
"@effect/platform-node": "latest",
"@libsql/client": "^0.17.0",
"@mermaid-js/parser": "^0.6.3",
"@opentui/core": "^0.1.75",
"@opentui/solid": "^0.1.75",
"diff": "latest",
"effect": "latest",
"fzf": "^0.5.2",
"solid-js": "^1.9.10",
"web-tree-sitter": "0.25.10",
"yaml": "latest"
},
"devDependencies": {
"bun-types": "latest",
"typescript": "^5"
},
"peerDependencies": {
"@libsql/client": "latest"
},
"peerDependenciesMeta": {
"@libsql/client": {
"optional": true
}
}
}