-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.53 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
{
"name": "@splatkit/react-native",
"version": "0.1.0-alpha.2",
"description": "SplatKit Fabric view with native Metal and Vulkan adapters",
"repository": { "type": "git", "url": "https://github.com/Xget7/react-native-splatkit.git" },
"license": "MIT",
"main": "build/index.js",
"types": "build/index.d.ts",
"react-native": "src/index.ts",
"publishConfig": { "access": "public" },
"codegenConfig": {
"name": "SplatKitSpec",
"type": "components",
"jsSrcsDir": "src/specs",
"android": { "javaPackageName": "com.splatkit.reactnative" },
"ios": { "componentProvider": { "SplatKitView": "SplatKitViewComponentView" } }
},
"scripts": {
"typecheck": "tsc --noEmit",
"test": "tsc && node --test tests/*.test.cjs",
"codegen": "node scripts/codegen.cjs",
"check": "npm run typecheck && npm test && npm run codegen",
"fetch:ios-xcframework": "node scripts/fetch-ios-xcframework.cjs",
"prepack": "npm run check && npm run fetch:ios-xcframework"
},
"engines": { "node": "^22.13.0 || ^24.3.0 || >=26.0.0" },
"peerDependencies": {
"react": "^19.2.3",
"react-native": "~0.87.1"
},
"devDependencies": {
"@react-native/codegen": "0.87.1",
"@types/react": "19.2.14",
"react": "19.2.4",
"react-native": "0.87.1",
"typescript": "5.9.3"
},
"files": [
"build", "src", "scripts",
"ios/*.h", "ios/*.mm", "ios/SplatKitCore.xcframework",
"android/build.gradle", "android/src",
"SplatKitReactNative.podspec", "react-native.config.js", "README.md", "CHANGELOG.md"
]
}