-
Notifications
You must be signed in to change notification settings - Fork 195
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.82 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
{
"name": "eve-monorepo",
"version": "0.0.0",
"private": true,
"description": "Monorepo for eve, a filesystem-first framework for durable backend agents on Vercel.",
"workspaces": [
"apps/*",
"apps/*/*",
"e2e/fixtures/*",
"packages/*"
],
"type": "module",
"scripts": {
"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": "simple-git-hooks",
"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",
"release": "pnpm build && node ./scripts/assert-changeset-publish-packages.mjs && changeset publish",
"test:tui": "pnpm --filter eve run test:tui"
},
"devDependencies": {
"@changesets/cli": "2.31.0",
"@types/node": "catalog:",
"ai": "catalog:",
"gray-matter": "4.0.3",
"oxfmt": "0.55.0",
"oxlint": "1.70.0",
"simple-git-hooks": "2.13.1",
"syncpack": "15.3.2",
"turbo": "2.9.18",
"typescript": "catalog:",
"vercel": "54.14.2",
"vitest": "catalog:"
},
"simple-git-hooks": {
"pre-commit": "node ./scripts/pre-commit-fmt.mjs"
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@11.7.0"
}