-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.17 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
{
"name": "@launchkey",
"private": true,
"license": "MIT",
"scripts": {
"changeset": "changeset",
"dev": "bun run launchkey --",
"dev:watch": "turbo watch build",
"build": "turbo run build",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"test": "turbo run test",
"format": "turbo run format",
"format:check": "turbo run format:check",
"check-types": "turbo run check-types",
"cli": "bun run apps/cli/src/bin.ts --",
"release:audit": "bun run scripts/audit-release.ts",
"release:smoke": "bun run scripts/smoke-npm-package.ts",
"release:verify": "bun run scripts/verify-npm-package.ts",
"launchkey": "bun run apps/cli/src/bin.ts --",
"sync-cli-version": "bun run scripts/sync-cli-version.ts",
"version-packages": "changeset version && bun run sync-cli-version",
"devtools": "devtools"
},
"devDependencies": {
"@biomejs/biome": "2.5.5",
"@changesets/cli": "^2.31.1",
"turbo": "^2.10.5",
"typescript": "7.0.2"
},
"engines": {
"node": ">=22.12.0"
},
"overrides": {
"hono": "4.12.22",
"ws": "8.20.1"
},
"packageManager": "bun@1.3.6",
"workspaces": [
"apps/*",
"packages/*",
"packages/agents/*",
"packages/tools/*"
]
}