-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.7 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.7 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "otto-monorepo",
"version": "0.1.295",
"private": true,
"description": "AI-powered development assistant CLI - monorepo",
"author": "nitishxyz",
"license": "MIT",
"homepage": "https://github.com/nitishxyz/otto#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/nitishxyz/otto.git"
},
"bugs": {
"url": "https://github.com/nitishxyz/otto/issues"
},
"keywords": [
"ai",
"cli",
"development",
"assistant",
"commit",
"code-review",
"gemini",
"anthropic",
"gpt"
],
"type": "module",
"workspaces": [
"packages/*",
"apps/*",
"examples/*"
],
"scripts": {
"lint": "biome check package.json biome.json apps/cli apps/desktop apps/intro-video apps/landing apps/launcher apps/preview-api apps/tui apps/web examples packages scripts tests",
"typecheck": "bun run --filter './apps/*' --filter './packages/*' typecheck",
"check": "bun run lint && bun run typecheck",
"cli": "bun run apps/cli/index.ts",
"test": "bun test tests packages/*/tests --path-ignore-patterns 'tmp/**'",
"db:generate": "drizzle-kit generate --config=drizzle.config.ts",
"db:reset": "bun run scripts/reset-db.ts",
"catalog:update": "bun run scripts/update-catalog.ts",
"catalog:ottorouter": "bun run scripts/update-catalog.ts --ottorouter",
"compile": "bun run scripts/compile.ts",
"compile:verbose": "bun run scripts/compile.ts --verbose",
"build:bin:darwin-arm64": "bun run scripts/compile.ts --target=bun-darwin-arm64",
"build:bin:darwin-x64": "bun run scripts/compile.ts --target=bun-darwin-x64",
"build:bin:linux-x64": "bun run scripts/compile.ts --target=bun-linux-x64",
"build:bin:linux-arm64": "bun run scripts/compile.ts --target=bun-linux-arm64",
"build": "bun run compile",
"build:packages": "bun run --filter './packages/*' build",
"build:apps": "bun run --filter './apps/*' build",
"build:all": "bun run build:packages && bun run build:apps",
"dev:sdk": "bun run --filter @ottocode/sdk dev",
"dev:cli": "bun run --filter @ottocode/cli dev",
"dev:server": "bun run --filter @ottocode/server dev",
"dev:web": "bun run --filter web dev",
"dev:desktop": "bun run scripts/build-desktop.ts --dev",
"dev:desktop:signed": "bun run scripts/build-desktop.ts --dev --sign",
"dev:canvas": "bun run scripts/build-canvas.ts --dev",
"dev:canvas:signed": "bun run scripts/build-canvas.ts --dev --sign",
"build:desktop": "bun run scripts/build-desktop.ts",
"build:desktop:all": "bun run scripts/build-desktop.ts --all-platforms",
"build:canvas": "bun run scripts/build-canvas.ts",
"build:canvas:signed": "bun run scripts/build-canvas.ts --sign",
"build:canvas:release": "./scripts/build-canvas-release.sh",
"prepublishOnly": "bun run compile",
"version:bump": "bun run scripts/bump-version.ts"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.72",
"@ai-sdk/devtools": "^0.0.12",
"@ai-sdk/google": "^3.0.0",
"@ai-sdk/openai": "^3.0.0",
"@ai-sdk/openai-compatible": "^2.0.0",
"@ai-sdk/xai": "^3.0.0",
"@clack/prompts": "^0.11.0",
"@noble/ciphers": "^1.3.0",
"@noble/hashes": "^1.3.0",
"@openauthjs/openauth": "^0.4.3",
"@openrouter/ai-sdk-provider": "^1.2.0",
"@resvg/resvg-js": "^2.6.2",
"@solana/web3.js": "^1.98.0",
"ai": "^6.0.170",
"bs58": "^6.0.0",
"diff": "^8.0.2",
"hono": "^4.9.9",
"marked": "^16.3.0",
"marked-terminal": "^7.3.0",
"opencode-anthropic-auth": "^0.0.2",
"satori": "^0.19.2",
"sst": "^4.12.2",
"tweetnacl": "^1.0.3",
"x402": "^1.1.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "2.2.4",
"@types/bun": "latest",
"@types/marked-terminal": "^6.1.1",
"drizzle-kit": "^0.31.4"
},
"overrides": {
"react": "19.2.0",
"react-dom": "19.2.0"
},
"peerDependencies": {
"typescript": "~5.9.3"
}
}