forked from RhysSullivan/executor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.85 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.85 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
{
"name": "executor-workspace",
"version": "1.4.0-beta.0",
"description": "Local AI executor with a CLI, local API server, and web UI.",
"keywords": [
"executor",
"ai",
"agent",
"cli",
"automation",
"local-first"
],
"homepage": "https://github.com/RhysSullivan/executor",
"bugs": {
"url": "https://github.com/RhysSullivan/executor/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RhysSullivan/executor.git"
},
"license": "MIT",
"private": true,
"type": "module",
"packageManager": "bun@1.3.11",
"workspaces": [
"packages/*/*",
"packages/react",
"apps/*"
],
"catalog": {
"effect": "^3.21.0",
"@effect/cluster": "^0.58.0",
"@effect/experimental": "^0.60.0",
"@effect/sql": "^0.51.0",
"@effect/sql-sqlite-bun": "^0.52.0",
"@effect/sql-sqlite-node": "^0.52.0",
"@effect/cli": "^0.73.2",
"@effect/platform": "^0.96.0",
"@effect/platform-bun": "^0.89.0",
"@effect/platform-node": "^0.106.0",
"@effect/vitest": "^0.27.0",
"@types/node": "^24.3.1",
"bun-types": "^1.2.22",
"drizzle-orm": "^0.44.0",
"vitest": "^3.2.4",
"vite": "^8.0.0",
"@vitejs/plugin-react": "^6.0.1",
"@tailwindcss/vite": "^4.2.2",
"@tanstack/react-router": "^1.168.10",
"@tanstack/react-start": "^1.167.16",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"typescript": "^5.9.3",
"tailwindcss": "^4.2.2"
},
"scripts": {
"dev": "turbo run dev --filter='!@executor/desktop'",
"dev:desktop": "turbo run dev",
"dev:cli": "bun run apps/cli/src/main.ts",
"test": "turbo run test",
"test:release:bootstrap": "vitest run tests/release-bootstrap-smoke.test.ts",
"typecheck": "bun run --filter='*' typecheck",
"lint": "oxlint -c .oxlintrc.jsonc . --deny-warnings",
"lint:fix": "oxlint -c .oxlintrc.jsonc --fix .",
"changeset": "changeset",
"changeset:version": "changeset version && bun install --lockfile-only",
"release:check": "bun run --cwd apps/cli typecheck && bun run test:release:bootstrap && bun run release:publish:dry-run",
"release:pre:enter": "changeset pre enter beta",
"release:pre:exit": "changeset pre exit",
"release:beta:start": "changeset pre enter beta",
"release:beta:stop": "changeset pre exit",
"release:publish:dry-run": "bun run --cwd apps/cli release:publish:dry-run",
"release:publish": "bun run --cwd apps/cli release:publish",
"prepare": "effect-language-service patch"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@effect/language-service": "^0.84.2",
"@effect/platform": "catalog:",
"@effect/vitest": "catalog:",
"effect": "catalog:",
"oxlint": "^1.56.0",
"turbo": "^2.5.6",
"typescript": "^5.9.3",
"vitest": "catalog:"
},
"dependencies": {}
}