-
-
Notifications
You must be signed in to change notification settings - Fork 95
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.1 KB
/
package.json
File metadata and controls
84 lines (84 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
83
84
{
"name": "ts",
"scripts": {
"s": "bun --watch i/run.ts",
"try": "bun --watch scripts/try.ts",
"watch": "bun cmd.ts run",
"dev": "bun --watch run.ts",
"cmd": "bun --watch cmd.ts",
"build": "tsup lib/file.ts --format esm --dts",
"test:watch": "bun test --watch",
"test:scripts": "bun test --watch scripts/scripts.test.ts",
"test:util": "bun test --watch lib/util/src/util.test.ts",
"node": "tput reset && tsx run.ts"
},
"dependencies": {
"@ai-sdk/google": "^2.0.23",
"@ai-sdk/openai": "^2.0.53",
"@ai-sdk/react": "^2.0.78",
"@clack/core": "^0.5.0",
"@clack/prompts": "^0.11.0",
"@effect/cli": "^0.71.0",
"@effect/platform-node": "^0.98.4",
"@google/genai": "^1.27.0",
"@libsql/client": "^0.15.15",
"@nikiv/ts-utils": "workspace:*",
"@nozbe/microfuzz": "^1.0.0",
"@openrouter/ai-sdk-provider": "^1.2.0",
"@optique/core": "^0.6.1",
"@optique/run": "^0.6.1",
"@orama/orama": "^3.1.16",
"@reatom/core": "^1000.0.0-alpha.53",
"@reatom/react": "^1000.0.0-alpha.50",
"@swan-io/boxed": "^3.2.1",
"@ts/try-ai": "workspace:*",
"@ts/try-reatom": "workspace:*",
"@types/node": "^24.9.1",
"@upstash/redis": "^1.35.6",
"ai": "^5.0.78",
"alchemy": "^0.76.1",
"arktype": "^2.1.23",
"better-result": "^2.3.0",
"chatgpt": "^5.2.5",
"citty": "^0.1.6",
"clipboardy": "^5.0.0",
"dotenv": "^17.2.3",
"effect": "^3.18.4",
"execa": "^9.6.0",
"fs-nano-store": "^0.3.1",
"gray-matter": "^4.0.3",
"jazz-tools": "^0.19.1",
"jest-fixtures": "^0.6.0",
"jszip": "^3.10.1",
"magic-regexp": "^0.10.0",
"markdown-link-extractor": "^4.0.2",
"micromark": "^4.0.2",
"ollama": "^0.6.0",
"open": "^10.2.0",
"openai": "^6.7.0",
"osascript-tag": "^0.1.2",
"prettier": "^3.6.2",
"simple-git": "^3.28.0",
"sqlite3": "^5.1.7",
"sst": "^3.17.21",
"telegraf": "^4.16.3",
"tinybase": "^6.7.2",
"ts-pattern": "^5.8.0",
"tsup": "^8.5.0",
"ufo": "^1.6.1",
"watcher": "^2.3.1",
"zx": "^8.8.5"
},
"devDependencies": {
"@biomejs/biome": "2.3.5",
"bun-types": "1.3.1"
},
"prettier": {
"semi": false
},
"type": "module",
"workspaces": [
"lib/*",
"try/*"
]
}