forked from alchemy-run/alchemy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
147 lines (147 loc) · 6.53 KB
/
Copy pathpackage.json
File metadata and controls
147 lines (147 loc) · 6.53 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "alchemy-monorepo",
"version": "0.0.0",
"private": true,
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/alchemy-run/alchemy-effect"
},
"type": "module",
"module": "./lib/index.js",
"scripts": {
"audit:service": "bun scripts/audit-service.ts",
"build:clean:shallow": "bun clean:shallow . && bun run build",
"build:clean": "bun clean . && bun i && bun run build && bun download:env",
"build:packages": "bun tsc -b && bun run --filter './packages/*' build",
"build": "bun tsc -b && bun run --filter ./website --filter './packages/*' build",
"clean:shallow": "rm -rf alchemy/*.tgz && bun tsc -b --clean",
"clean": "git clean -fqdx -e .env",
"clear:state": "alchemy state clear ./stacks/nuke.ts",
"deploy:github": "doppler run -c prod --project alchemy-v2 -- bun alchemy deploy ./stacks/github.ts --profile admin",
"deploy:otel:prod": "bun deploy:otel --profile prod --stage prod",
"deploy:otel": "doppler run -c dev --project alchemy-v2 -- bun alchemy deploy ./stacks/otel.ts",
"deploy:website:prod": "bun deploy:website --stage prod --profile prod",
"deploy:website": "cd ./website && bun run build:reference && bun alchemy deploy",
"destroy:github": "doppler run -c dev --project alchemy-v2 -- bun alchemy destroy ./stacks/github.ts --profile admin",
"destroy:otel:prod": "bun destroy:otel --profile prod --stage prod",
"destroy:otel": "doppler run -c dev --project alchemy-v2 -- bun alchemy destroy ./stacks/otel.ts --profile admin",
"destroy:website:prod": "bun destroy:website --stage prod --profile prod",
"destroy:website": "cd ./website && bun alchemy destroy",
"dev:website": "cd ./website && bun astro dev",
"dev": "tsc -b -w & bun run --filter alchemy dev",
"docs:build": "bun run --filter ./website docs:build",
"docs:check": "bun run --filter ./website docs:check",
"docs:gen": "bun ./scripts/generate-api-reference.ts",
"download:cfn": "bun scripts/generate-cfn-docs.ts",
"download:env": "doppler secrets download --project alchemy-v2 --config dev --no-file --format env > .env",
"download:external": "bun download:env && bun download:cfn && bun download:terraform",
"format:check": "bun run format ./packages ./website -- --check",
"format": "oxfmt ./packages ./website",
"install:clean": "rm -rf node_modules examples/**/node_modules alchemy/node_modules && bun i",
"logs:otel:prod": "bun logs:otel --profile prod --stage prod",
"logs:otel": "doppler run -c dev --project alchemy-v2 -- bun alchemy logs ./stacks/otel.ts",
"nuke": "bash scripts/nuke.sh",
"opencode": "OPENCODE_EXPERIMENTAL_OXFMT=true opencode",
"prepare": "husky",
"publish:npm": "bun run build && bun run --filter alchemy publish:npm",
"setup": "effect-language-service patch && bun run download:external",
"sync:submodules": "git submodule sync --recursive && git submodule update --init --recursive",
"test:canary": "SMOKE_CANARY=1 bun test --only-failures ./test/smoke.test.ts",
"test:examples": "bun run --filter ./examples/cloudflare-worker --filter ./examples/cloudflare-worker-auth --filter ./examples/cloudflare-worker-async --filter ./examples/cloudflare-tanstack --filter ./examples/cloudflare-tanstack-start-solid --filter ./examples/aws-lambda test && bun format",
"test": "cd ./packages/alchemy && bun vitest run",
"test:fast": "FAST=1 NO_SLOW_TESTS=1 cd ./packages/alchemy && bun vitest run"
},
"workspaces": {
"packages": [
"website",
"packages/*",
"examples/*",
"examples/monorepo-single-stack/*",
"examples/monorepo-multi-stack/*",
"distilled/packages/*"
],
"catalog": {
"@alchemy.run/node-utils": "0.0.5",
"@aws-sdk/credential-providers": "^3.0.0",
"@cloudflare/containers": "^0.1.1",
"@cloudflare/vite-plugin": "^1.13.12",
"@cloudflare/workers-types": "^4.20250805.0",
"@distilled.cloud/aws": "workspace:*",
"@distilled.cloud/axiom": "workspace:*",
"@distilled.cloud/cloudflare-rolldown-plugin": "0.11.3",
"@distilled.cloud/cloudflare-runtime": "0.11.3",
"@distilled.cloud/cloudflare-vite-plugin": "0.11.3",
"@distilled.cloud/cloudflare": "workspace:*",
"@distilled.cloud/core": "workspace:*",
"@distilled.cloud/neon": "workspace:*",
"@distilled.cloud/planetscale": "workspace:*",
"@effect/language-service": ">=4.0.0-beta.84|| >=4.0.0",
"@effect/platform-bun": ">=4.0.0-beta.84|| >=4.0.0",
"@effect/platform-node-shared": ">=4.0.0-beta.84|| >=4.0.0",
"@effect/platform-node": ">=4.0.0-beta.84|| >=4.0.0",
"@effect/sql-pg": ">=4.0.0-beta.84|| >=4.0.0",
"@effect/vitest": ">=4.0.0-beta.84|| >=4.0.0",
"@libsql/client": "^0.17.0",
"@opentui/core": "latest",
"@opentui/solid": "latest",
"@smithy/node-config-provider": "^4.0.0",
"@smithy/shared-ini-file-loader": "^4.3.4",
"@smithy/types": "^4.8.1",
"@types/aws-lambda": "^8.10.152",
"@types/bun": "latest",
"@types/node": "latest",
"ai": "^6.0.62",
"aws4fetch": "^1.0.20",
"better-auth": "^1.6.2",
"drizzle-kit": ">=1.0.0-rc.1",
"drizzle-orm": ">=1.0.0-rc.1",
"effect": ">=4.0.0-beta.84|| >=4.0.0",
"fast-xml-parser": "^5.3.4",
"rolldown": "1.0.1",
"solid-js": "latest",
"sonda": "^0.11.1",
"typescript": "^7.0.1-rc",
"vite": "^8.0.7",
"vitest": "^4.1.8",
"uuid": "^14.0.0",
"web-tree-sitter": "0.25.10",
"ws": "^8.20.0",
"yaml": "^2.0.0",
"@aws-crypto/crc32": "^5.2.0",
"@aws-crypto/util": "^5.2.0",
"@aws-sdk/types": "^3.973.1",
"@smithy/util-base64": "^4.3.0",
"archiver": "^7.0.1",
"dedent": "^1.7.0",
"dotenv": "^16.5.0",
"oxfmt": "^0.36.0",
"oxlint": "^1.51.0",
"pathe": "^2.0.3"
}
},
"devDependencies": {
"@alchemy.run/pr-package": "workspace:*",
"@ark/attest": "^0.56.0",
"@cloudflare/puppeteer": "^1.1.0",
"@distilled.cloud/cloudflare": "catalog:",
"@effect/language-service": "^0.77.0",
"@effect/platform-bun": "catalog:",
"@effect/platform-node": "catalog:",
"@types/bun": "latest",
"@types/node": "latest",
"@vitest/ui": "^4.1.0",
"alchemy": "workspace:*",
"bun-types": "^1.3.8",
"changelogithub": "^13.16.1",
"dotenv": "^17.2.3",
"effect": "catalog:",
"husky": "^9.1.7",
"oxfmt": "latest",
"oxlint": "latest",
"pkg-pr-new": "^0.0.62",
"ts-morph": "^27.0.2",
"typescript": "catalog:",
"yaml": "^2.8.2"
}
}