-
Notifications
You must be signed in to change notification settings - Fork 484
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 2.03 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
{
"name": "eve-monorepo",
"version": "0.0.0",
"private": true,
"description": "Monorepo for eve, a filesystem-first framework for durable backend agents on Vercel.",
"homepage": "https://eve.dev/",
"workspaces": [
"apps/*",
"apps/*/*",
"e2e/fixtures/*",
"packages/*"
],
"type": "module",
"scripts": {
"benchmark": "pnpm --filter @eve-internal/benchmarks benchmark",
"benchmark:publish": "node apps/benchmarks/publish.mjs",
"build": "turbo run build --filter='./packages/*'",
"changeset": "changeset",
"check:deps": "syncpack lint",
"dev": "node ./scripts/dev.mjs",
"docs:check": "node ./scripts/check-docs.mjs && node ./scripts/check-doc-snippets.mjs && node ./scripts/check-doc-mdx.mjs",
"fix:deps": "syncpack fix-mismatches && syncpack format",
"fmt": "oxfmt",
"guard:fixtures": "node ./scripts/guard-test-fixtures.mjs",
"guard:invariants": "node ./scripts/guard-invariants.mjs",
"lint": "oxlint --fix",
"prepare": "node ./scripts/install-git-hooks.mjs",
"test": "pnpm test:unit && pnpm test:integration",
"test:e2e": "turbo run test:e2e --concurrency=1",
"test:integration": "turbo run test:integration",
"test:scenario": "turbo run test:scenario",
"test:unit": "turbo run test:unit",
"typecheck": "turbo run typecheck",
"version-packages": "changeset version && node ./scripts/materialize-registry-release-requirements.mjs",
"release": "pnpm build && node ./scripts/assert-changeset-publish-packages.mjs && changeset publish",
"test:tui": "pnpm --filter eve run test:tui",
"update:extension-contracts": "node ./scripts/extension-capability-contracts.mjs"
},
"devDependencies": {
"@changesets/cli": "2.31.0",
"@microsoft/api-extractor": "7.58.10",
"@types/node": "catalog:",
"gray-matter": "4.0.3",
"oxfmt": "0.63.0",
"oxlint": "1.78.0",
"syncpack": "15.3.2",
"turbo": "2.9.18",
"typescript": "catalog:",
"vercel": "59.5.0"
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@11.21.0"
}