-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.32 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
{
"name": "opencode-event-bridge",
"private": true,
"license": "MIT",
"type": "module",
"module": "alchemy.run.ts",
"scripts": {
"prepare": "effect-tsgo patch --no-typescript --oxlint && (lefthook install || true)",
"test:unit": "vitest run test/unit",
"test:e2e": "vitest run test/e2e",
"typecheck": "tsc --noEmit",
"knip": "knip",
"lint": "oxlint .",
"lint:fix": "oxlint . --fix",
"format": "oxfmt",
"format:fix": "oxfmt --write .",
"deploy:dev": "alchemy deploy",
"deploy:prod": "alchemy deploy --stage prod --env-file .env.prod",
"provision:github": "alchemy deploy stacks/github.ts --profile admin",
"check": "pnpm run typecheck && pnpm run lint && pnpm run format && pnpm run knip && pnpm run test:unit"
},
"dependencies": {
"@effect/platform-browser": "4.0.0-beta.102",
"@effect/platform-node": "4.0.0-beta.102",
"@opencode-ai/sdk": "^1.18.15",
"alchemy": "2.0.0-beta.67",
"effect": "4.0.0-beta.102"
},
"devDependencies": {
"@effect/tsgo": "0.36.1",
"@effect/vitest": "4.0.0-beta.102",
"@types/node": "^26.2.0",
"knip": "^6.32.0",
"lefthook": "^2.1.10",
"oxfmt": "^0.62.0",
"oxlint": "1.77.0",
"oxlint-tsgolint": "7.0.2001",
"typescript": "7.0.2",
"vitest": "^4.1.10"
},
"packageManager": "pnpm@11.18.0"
}