forked from alchemy-run/distilled
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 3.04 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 3.04 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
{
"name": "distilled",
"private": true,
"type": "module",
"scripts": {
"build": "bun --filter '@distilled.cloud/core' build && bun --filter '@distilled.cloud/*' --filter '!@distilled.cloud/website' build",
"build:clean": "bun install:clean && bun run build",
"clean": "git clean -fqdx . -e .env",
"install:clean": "bun clean && bun install",
"download:env": "doppler secrets download --no-file --format env > .env",
"typecheck": "bun --filter '@distilled.cloud/*' --filter '!@distilled.cloud/website' typecheck",
"fmt": "bun --filter '@distilled.cloud/*' --filter '!@distilled.cloud/website' fmt",
"lint": "bun --filter '@distilled.cloud/*' --filter '!@distilled.cloud/website' lint",
"flint": "bun run fmt && bun run lint",
"check": "bun --filter '@distilled.cloud/*' --filter '!@distilled.cloud/website' check",
"test": "bun --filter '@distilled.cloud/*' --filter '!@distilled.cloud/website' test",
"generate": "bun --filter '@distilled.cloud/*' --filter '!@distilled.cloud/website' generate",
"specs:fetch": "bun --filter '@distilled.cloud/*' --filter '!@distilled.cloud/website' specs:fetch",
"specs:update": "bun --filter '@distilled.cloud/*' --filter '!@distilled.cloud/website' specs:update",
"create-sdk": "bun ./scripts/create-sdk.ts",
"nuke": "bun --filter '@distilled.cloud/*' --filter '!@distilled.cloud/website' nuke",
"generate-nuke": "bun ./scripts/generate-nuke.ts",
"generate-tests": "bun ./scripts/generate-tests.ts",
"error-discovery": "bun ./scripts/error-discovery.ts",
"prepare": "husky"
},
"workspaces": {
"packages": [
"./packages/*",
"./www/*"
],
"catalog": {
"@aws-crypto/crc32": "^5.2.0",
"@aws-crypto/util": "^5.2.0",
"@aws-sdk/credential-providers": "^3.994.0",
"@aws-sdk/types": "^3.973.1",
"@effect/platform-bun": ">=4.0.0-beta.66 || >=4.0.0",
"@effect/platform-node": ">=4.0.0-beta.66 || >=4.0.0",
"@effect/vitest": ">=4.0.0-beta.66 || >=4.0.0",
"@smithy/shared-ini-file-loader": "^4.4.3",
"@smithy/types": "^4.12.0",
"@smithy/util-base64": "^4.3.0",
"@types/bun": "^1.3.0",
"@types/node": "^25.3.5",
"@typescript/native-preview": "7.0.0-dev.20260329.1",
"archiver": "^7.0.1",
"aws4fetch": "^1.0.20",
"dedent": "^1.7.0",
"dotenv": "^16.5.0",
"effect": ">=4.0.0-beta.66 || >=4.0.0",
"fast-xml-parser": "^5.3.2",
"oxfmt": "^0.36.0",
"oxlint": "^1.51.0",
"pathe": "^2.0.3",
"vite": "^7.3.1",
"vitest": "^3.2.3",
"yaml": "^2.7.1"
}
},
"dependencies": {
"@effect/platform-bun": "catalog:",
"effect": "catalog:"
},
"overrides": {
"undici": "7.10.0"
},
"devDependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.81",
"@types/bun": "catalog:",
"@types/node": "catalog:",
"@typescript/native-preview": "catalog:",
"aws4fetch": "^1.0.20",
"changelogithub": "^14.0.0",
"husky": "^9.1.7",
"oxfmt": "catalog:",
"oxlint": "catalog:",
"yaml": "catalog:"
}
}