-
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.64 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.64 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": "friday-code-workspace",
"version": "2.0.0",
"private": true,
"description": "Monorepo workspace for Friday Code — a terminal AI coding agent. The published artifact is the `friday-code` package built from this workspace.",
"license": "MIT",
"author": "Yashwanth Reddy Katipally",
"homepage": "https://github.com/katipally/friday-code#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/katipally/friday-code.git"
},
"bugs": {
"url": "https://github.com/katipally/friday-code/issues"
},
"type": "module",
"workspaces": ["packages/*"],
"engines": {
"bun": ">=1.3.0"
},
"packageManager": "bun@1.3.11",
"scripts": {
"friday": "bun run packages/cli/src/index.tsx",
"dev": "bun --watch run packages/cli/src/index.tsx",
"test": "bun test",
"typecheck": "tsc --noEmit -p packages/shared/tsconfig.json && tsc --noEmit -p packages/providers/tsconfig.json && tsc --noEmit -p packages/tools/tsconfig.json && tsc --noEmit -p packages/mcp/tsconfig.json && tsc --noEmit -p packages/lsp/tsconfig.json && tsc --noEmit -p packages/core/tsconfig.json && tsc --noEmit -p packages/tui/tsconfig.json && tsc --noEmit -p packages/cli/tsconfig.json",
"lint": "biome lint packages",
"format": "biome format --write packages",
"check": "biome check packages",
"ci": "biome ci packages && bun run typecheck && bun test",
"build": "bun run scripts/build.ts"
},
"dependencies": {
"@opentui/core": "0.4.1",
"@opentui/solid": "0.4.1",
"solid-js": "1.9.13"
},
"devDependencies": {
"@biomejs/biome": "2.5.0",
"@types/bun": "1.3.14",
"typescript": "6.0.3"
}
}