forked from wcandillon/react-native-webgpu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 3.05 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 3.05 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "Example",
"version": "0.0.1",
"private": true,
"scripts": {
"lint": "eslint . --ext .ts,.tsx --max-warnings 0 --cache --fix",
"tsc": "tsc --noEmit",
"android": "react-native run-android",
"ios": "react-native run-ios",
"web": "IS_WEB_BUILD=true react-native start",
"start": "react-native start",
"pod:install:ios": "pod install --project-directory=ios",
"pod:install:macos": "pod install --project-directory=macos",
"build:android": "cd android && ./gradlew assembleDebug --warning-mode all",
"build:ios": "react-native build-ios --scheme Example --mode Debug --extra-params \"-sdk iphonesimulator CC=clang CPLUSPLUS=clang++ LD=clang LDPLUSPLUS=clang++ GCC_OPTIMIZATION_LEVEL=0 GCC_PRECOMPILE_PREFIX_HEADER=YES ASSETCATALOG_COMPILER_OPTIMIZATION=time DEBUG_INFORMATION_FORMAT=dwarf COMPILER_INDEX_STORE_ENABLE=NO CLANG_CXX_LANGUAGE_STANDARD=c++20\"",
"build:macos": "react-native build-macos --scheme Example --mode Debug",
"mkdist": "node -e \"require('node:fs').mkdirSync('dist', { recursive: true, mode: 0o755 })\"",
"postinstall": "node -e \"if (process.platform !== 'darwin') { console.log('Skipping iOS pod install on non-macOS environment.'); process.exit(0); } const { execSync } = require('child_process'); execSync('yarn pod:install:ios', { stdio: 'inherit' });\""
},
"dependencies": {
"@callstack/react-native-visionos": "^0.74.0",
"@react-navigation/native": "^6.1.17",
"@react-navigation/stack": "^6.4.0",
"@react-three/fiber": "^9.4.0",
"@shopify/react-native-skia": "2.5.0",
"@tensorflow/tfjs": "^4.22.0",
"@tensorflow/tfjs-backend-webgpu": "^4.22.0",
"@tensorflow/tfjs-vis": "^1.5.1",
"async-mutex": "^0.5.0",
"fast-text-encoding": "^1.0.6",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-native": "0.81.4",
"react-native-gesture-handler": "^2.28.0",
"react-native-macos": "^0.79.0",
"react-native-reanimated": "4.2.1",
"react-native-safe-area-context": "^5.4.0",
"react-native-web": "^0.21.2",
"react-native-wgpu": "*",
"react-native-worklets": "0.7.2",
"teapot": "^1.0.0",
"three": "0.172.0",
"typegpu": "^0.3.2",
"wgpu-matrix": "^3.0.2"
},
"devDependencies": {
"@babel/core": "^7.25.0",
"@babel/preset-env": "^7.25.0",
"@babel/runtime": "^7.25.0",
"@react-native/babel-preset": "0.81.0",
"@react-native/eslint-config": "0.81.0",
"@react-native/metro-config": "0.81.0",
"@react-native/typescript-config": "0.81.0",
"@rnx-kit/metro-config": "^2.0.0",
"@types/node": "^20.14.7",
"@types/react": "19.1.0",
"@types/react-dom": "19.1.0",
"@types/react-test-renderer": "^18.0.0",
"@types/three": "0.172.0",
"@webgpu/types": "0.1.65",
"babel-jest": "^29.6.3",
"eslint": "9.35.0",
"eslint-config-react-native-wcandillon": "4.0.1",
"eslint-plugin-prettier": "^5.4.0",
"jest": "^29.6.3",
"prettier": "2.8.8",
"react-native-test-app": "4.4.10",
"react-test-renderer": "18.2.0",
"typescript": "5.0.4"
},
"engines": {
"node": ">=18"
}
}