-
Notifications
You must be signed in to change notification settings - Fork 165
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.95 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
{
"name": "@executor-js/host-selfhost",
"version": "0.0.12",
"private": true,
"type": "module",
"exports": {
".": "./src/index.ts",
"./serve": "./src/serve.ts",
"./plugins": "./src/plugins.ts"
},
"scripts": {
"dev": "bunx --bun vite dev",
"build": "turbo run build --filter @executor-js/vite-plugin && vite build",
"start": "bun run src/serve.ts",
"typecheck": "tsgo --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"routes:gen": "bun scripts/gen-routes.ts"
},
"dependencies": {
"@better-auth/api-key": "^1.6.11",
"@effect/atom-react": "catalog:",
"@effect/platform-bun": "catalog:",
"@executor-js/api": "workspace:*",
"@executor-js/app": "workspace:*",
"@executor-js/execution": "workspace:*",
"@executor-js/fumadb": "workspace:*",
"@executor-js/host-mcp": "workspace:*",
"@executor-js/plugin-encrypted-secrets": "workspace:*",
"@executor-js/plugin-graphql": "workspace:*",
"@executor-js/plugin-mcp": "workspace:*",
"@executor-js/plugin-openapi": "workspace:*",
"@executor-js/react": "workspace:*",
"@executor-js/runtime-quickjs": "workspace:*",
"@executor-js/sdk": "workspace:*",
"@libsql/client": "catalog:",
"@libsql/kysely-libsql": "catalog:",
"@modelcontextprotocol/sdk": "^1.29.0",
"@tanstack/react-router": "catalog:",
"better-auth": "^1.6.11",
"drizzle-orm": "catalog:",
"effect": "catalog:",
"react": "catalog:",
"react-dom": "catalog:"
},
"devDependencies": {
"@effect/vitest": "catalog:",
"@executor-js/vite-plugin": "workspace:*",
"@tailwindcss/vite": "catalog:",
"@tanstack/router-plugin": "^1.167.12",
"@tanstack/virtual-file-routes": "^1.162.0",
"@types/node": "catalog:",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"@vitejs/plugin-react": "catalog:",
"bun-types": "catalog:",
"typescript": "catalog:",
"vite": "catalog:",
"vitest": "catalog:"
}
}