-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.98 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.98 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
{
"name": "codevisor",
"private": true,
"type": "module",
"packageManager": "bun@1.3.13",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "bun scripts/dev.mjs",
"dev:macos": "bun scripts/dev.mjs --no-ios",
"dev:ios": "bun scripts/dev-ios.mjs",
"build:macos": "bun scripts/build-native.mjs macos",
"build:ios": "bun scripts/build-native.mjs ios",
"ghostty:build": "bun scripts/ghostty-artifact.mjs build",
"dev:scripts:test": "node --test scripts/*.test.mjs",
"build": "turbo run build",
"typecheck": "turbo run typecheck",
"lint": "oxlint -c .oxlintrc.json --disable-nested-config --ignore-pattern '.repos/**' --ignore-pattern 'tmp/**' --ignore-pattern '.codevisor/**' .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "turbo run test",
"test:coverage": "turbo run test:coverage",
"check:js": "bun run format:check && bun run lint && bun run ratchet:check && bun run boundaries && bun run typecheck && bun run test:coverage && bun run dev:scripts:test && bun run release:scripts:test",
"check": "bun run check:js && bun run swift:format:check && bun run swift:lint && bun run swift:test && bun run swift:build:ios",
"dev:web": "bun run --cwd apps/www dev",
"release:server": "scripts/release/build-server-archive.sh",
"release:browser-extension": "node scripts/release/build-browser-extension.mjs",
"release:browser-extension:publish": "node scripts/release/publish-browser-extension.mjs",
"release:browser-extension:test": "node --test scripts/release/publish-browser-extension.test.mjs",
"release:scripts:test": "node --test scripts/release/*.test.mjs",
"release:macos": "scripts/release/build-macos-app.sh",
"release:tap": "node scripts/release/update-homebrew-tap.mjs",
"setup:github-oauth": "node scripts/setup-github-oauth.mjs",
"swift:test": "swift test --package-path packages/swift",
"swift:build:ios": "bun scripts/build-native.mjs ios -quiet",
"xcode:list": "bun scripts/build-native.mjs list:macos",
"swift:lint": "scripts/swift-lint.sh",
"swift:format": "scripts/swift-format.sh fix",
"swift:format:check": "scripts/swift-format.sh check",
"boundaries": "turbo boundaries",
"ratchet:check": "node scripts/check-size-ratchet.mjs"
},
"devDependencies": {
"@types/better-sqlite3": "7.6.13",
"@types/node": "26.0.0",
"@types/ws": "8.5.13",
"@vitest/coverage-v8": "4.1.6",
"node-gyp": "13.0.0",
"oxlint": "1.42.0",
"prettier": "3.8.1",
"turbo": "2.6.1",
"typescript": "6.0.2",
"vitest": "4.1.6"
},
"dependencies": {
"@agentclientprotocol/sdk": "1.1.0",
"@effect/platform-node": "4.0.0-beta.92",
"@effect/sql-sqlite-node": "4.0.0-beta.92",
"@effect/vitest": "4.0.0-beta.92",
"better-sqlite3": "12.9.0",
"effect": "4.0.0-beta.92",
"node-pty": "1.1.0-beta34",
"ws": "8.18.3",
"zod": "4.4.3"
},
"trustedDependencies": [
"better-sqlite3",
"node-pty"
]
}