-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.56 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.56 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
{
"name": "cea-monorepo",
"version": "1.0.0",
"description": "A code-editing agent using Vercel AI SDK and Anthropic",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --filter=plugsuits",
"headless": "node --conditions=@ai-sdk-tool/source --import tsx packages/cea/src/entrypoints/main.ts --prompt",
"test": "turbo run test",
"typecheck": "pnpm run typecheck:root && turbo run typecheck",
"typecheck:root": "pnpm -F @ai-sdk-tool/harness exec tsc --noEmit -p ../../tsconfig.root.json",
"check": "pnpm exec ultracite check .",
"lint": "pnpm exec ultracite fix .",
"test:headless-edit": "node --import tsx scripts/test-headless-edit-ops.ts",
"test:headless-edit-edge": "node --import tsx scripts/test-headless-edit-edge-cases.ts",
"changeset": "changeset",
"version-packages": "changeset version && pnpm install --no-frozen-lockfile",
"release": "pnpm run build && changeset publish"
},
"keywords": [
"ai",
"agent",
"code-editing",
"vercel-ai-sdk"
],
"author": "",
"license": "MIT",
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=18"
},
"pnpm": {
"overrides": {
"picomatch@<2.3.2": "2.3.2",
"picomatch@>=4.0.0 <4.0.4": "4.0.4",
"brace-expansion@>=5.0.0 <5.0.5": "5.0.5",
"yaml@>=2.0.0 <2.8.3": "2.8.3"
}
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@changesets/cli": "^2.30.0",
"@types/node": "^25.4.0",
"turbo": "^2.8.16",
"tsx": "^4.21.0",
"ultracite": "^7.2.5",
"vitest": "^4.0.18"
}
}