-
Notifications
You must be signed in to change notification settings - Fork 202
/
Copy pathpackage.json
36 lines (36 loc) · 892 Bytes
/
package.json
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
{
"name": "native-module-sample",
"version": "1.0.0",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"codegen-windows": "react-native codegen-windows",
"windows": "npx @react-native-community/cli run-windows"
},
"peerDependencies": {
"react": "^16.13.1",
"react-native": "^0.63.2",
"react-native-windows": "^0.63.0-0"
},
"devDependencies": {
"metro-config": "^0.66.2",
"react": "18.3.1",
"react-native": "0.76.2",
"react-native-windows": "^0.76.2"
},
"codegenConfig": {
"name": "NativeModuleSample",
"type": "modules",
"jsSrcsDir": "src",
"windows": {
"namespace": "NativeModuleSample"
}
},
"react-native-windows": {
"init-windows": {
"name": "NativeModuleSample",
"namespace": "NativeModuleSample",
"template": "old/uwp-cpp-lib"
}
}
}