-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.58 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.58 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
{
"name": "@next-dev/monorepo",
"private": true,
"scripts": {
"dev": "turbo dev",
"dev:docs": "turbo dev --filter=@next-dev/uniwind-docs",
"dev:showcase": "turbo dev --filter=@rnr/showcase --concurrency 32",
"dev:editor": "turbo dev --filter=@next-dev/editor-ui",
"dev:desktop": "turbo dev --filter=@next-dev/desktop",
"dev:mcp": "turbo dev --filter=@next-dev/mcp-server",
"lint": "biome lint .",
"format": "biome format --write .",
"check": "biome check --write .",
"test": "turbo test",
"test:core": "turbo test --filter=@next-dev/editor-core",
"test:e2e": "pnpm --filter @next-dev/desktop test:e2e",
"build": "turbo build",
"registry": "turbo registry",
"build:showcase": "turbo build --filter=@rnr/showcase",
"build:docs": "turbo build --filter=@next-dev/uniwind-docs",
"clean": "turbo clean && rm -rf .turbo node_modules",
"init:cursor": "agent-cli sync --target cursor",
"convert:cursor": "agent-cli convert --from cursor",
"agents:status": "agent-cli status"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"turbo": "^2.5.5",
"typescript": "^5.8.3"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@babel/*",
"expo-modules-*",
"typescript"
]
},
"overrides": {
"react": "19.2.4",
"react-dom": "19.2.4",
"react-native": "0.81.5",
"react-native-safe-area-context": "5.6.2"
}
},
"engines": {
"node": ">=20.11.0"
},
"packageManager": "pnpm@10.14.0",
"resolutions": {
"lightningcss": "1.27.0"
}
}