-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 885 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 885 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
30
31
32
33
34
35
{
"name": "react-native-view-recorder-monorepo",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/*",
"apps/*",
"docs"
],
"devDependencies": {
"@biomejs/biome": "^2.4.0",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.0",
"lefthook": "^2.1.1",
"madge": "^8.0.0"
},
"scripts": {
"prepare": "lefthook install",
"docs": "bun --cwd docs",
"lib": "bun --cwd packages/react-native-view-recorder",
"example": "bun --cwd apps/example",
"check-types": "bun --filter '*' check-types",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"build": "bun run lib prepare",
"test": "bun run lib test"
},
"overrides": {
"expo": "~55.0.3",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-native": "0.83.2"
}
}