-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.39 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
{
"name": "streamwise",
"private": true,
"description": "A streaming CLI chat app that integrates LLM tool calling with real-world weather and research APIs, including pending states, cancellation, and graceful handling of messy API behavior",
"packageManager": "pnpm@11.5.3",
"engines": {
"node": "==24"
},
"type": "module",
"scripts": {
"build": "pnpm tsc",
"format:arrows": "pnpm convert-to-arrow .",
"format:biome": "pnpm biome format --write .",
"format:braces": "pnpm strip-braces .",
"format:check": "pnpm biome check --write .",
"format": "npm-run-all format:arrows format:braces format:biome format:check",
"lint:biome": "pnpm biome format .",
"lint:oxlint": "pnpm oxlint .",
"lint": "npm-run-all lint:biome lint:oxlint",
"strip-braces": "pnpm exec sg scan --rule .ast-grep/rules/strip-braces.yml -U",
"test": "pnpm vitest run"
},
"dependencies": {
"@clack/prompts": "^1.5.1",
"@inquirer/prompts": "^8.5.2",
"arktype": "^2.2.0",
"ky": "^2.0.2",
"openai": "^6.42.0",
"yocto-spinner": "^1.2.0"
},
"devDependencies": {
"@ast-grep/cli": "^0.43.0",
"@biomejs/biome": "^2.4.16",
"@types/node": "^25.9.2",
"convert-to-arrow": "^1.0.21",
"npm-run-all2": "^9.0.1",
"oxlint": "^1.69.0",
"oxlint-tsgolint": "^0.23.0",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
}
}