-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.74 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.74 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
{
"name": "react-native-linux-monorepo",
"private": true,
"version": "0.0.0",
"description": "React Native for Linux (GTK4 + Hermes + Fabric)",
"license": "MIT",
"author": "Lucid Softworks <hello@lucidsoft.works> (https://lucidsoft.works)",
"repository": {
"type": "git",
"url": "git+https://github.com/lucid-softworks/react-native-linux.git"
},
"bugs": {
"url": "https://github.com/lucid-softworks/react-native-linux/issues"
},
"homepage": "https://github.com/lucid-softworks/react-native-linux#readme",
"scripts": {
"build": "pnpm -r --workspace-concurrency=1 run build",
"lint": "oxlint .",
"lint:format": "oxfmt --check .",
"lint:cpp": "CF=$(command -v clang-format-18 || echo clang-format); find vnext template/linux -path '*/build/*' -prune -o -type f \\( -name '*.cpp' -o -name '*.h' \\) -print | xargs $CF --dry-run --Werror",
"format": "oxfmt .",
"format:cpp": "CF=$(command -v clang-format-18 || echo clang-format); find vnext template/linux -path '*/build/*' -prune -o -type f \\( -name '*.cpp' -o -name '*.h' \\) -print | xargs $CF -i",
"test": "pnpm -r run test",
"typecheck": "pnpm -r run typecheck",
"cmake:configure": "cmake -S vnext -B vnext/build -G Ninja -DCMAKE_BUILD_TYPE=Debug -DREACT_NATIVE_ROOT=$PWD/node_modules/react-native",
"cmake:build": "cmake --build vnext/build",
"clean": "rimraf vnext/build && pnpm -r run clean",
"prepare": "git config core.hooksPath .githooks || true"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@types/react": "^19.1.0",
"oxfmt": "^0.52.0",
"oxlint": "^1.67.0",
"rimraf": "^5.0.5",
"typescript": "^5.4.0"
},
"engines": {
"node": ">=18",
"pnpm": ">=9"
},
"packageManager": "pnpm@9.15.5"
}