-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 965 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 965 Bytes
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
{
"name": "aether",
"version": "0.0.1",
"private": true,
"description": "Aether 协同智能介质 monorepo:Turborepo + pnpm + Next.js 16 + Vite 8",
"packageManager": "pnpm@11.21.0",
"engines": {
"node": ">=22"
},
"scripts": {
"build": "turbo run build",
"build:web": "pnpm turbo run build --filter=@aether/web",
"build:editor-host": "pnpm turbo run build --filter=@aether/editor-host",
"build:converge-server": "pnpm turbo run build --filter=@aether/converge-server",
"db:migrate": "pnpm --filter @aether/db db:migrate",
"changeset": "pnpm dlx @changesets/cli",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"check": "turbo run check"
},
"devDependencies": {
"next": "^16.0.0",
"turbo": "^2.5.0",
"typescript": "^6.0.0"
},
"packageManagerNote": "使用 pnpm 11;Node >= 22。包命名一律 @aether scope。"
}