-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 680 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 680 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
{
"private": true,
"scripts": {
"build": "pnpm run --filter './packages/**' build",
"check": "pnpm run --filter './packages/**' --parallel check",
"ios": "pnpm run --filter './packages/app' ios",
"ios-typescript": "pnpm run --filter './packages/app-typescript' ios",
"prettier": "prettier --log-level=warn --ignore-unknown --no-error-on-unmatched-pattern",
"test": "pnpm run --filter './packages/jacaranda' test"
},
"devDependencies": {
"prettier": "3.5.2",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=18.x.x"
},
"packageManager": "pnpm@10.4.1",
"pnpm": {
"overrides": {
"jacaranda": "workspace:*"
}
}
}