forked from ReactVision/viro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.35 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@viro-community/react-viro",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"version": "2.23.0",
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": "[email protected]:virocommunity/viro.git",
"description": "Official community version of react-viro",
"scripts": {
"start": "echo 'I dont think you meant to run npm start here.'",
"test": "jest",
"tsc": "tsc",
"build": "yarn tsc && yarn copy-files",
"bundle": "./prepare_release.sh",
"copy-files": "cp -r ./components/Resources/ ./dist/components/Resources/",
"clean": "rm -rf ./dist/ *.tgz node_modules/"
},
"jest": {
"preset": "react-native"
},
"peerDependencies": {
"react-native": "0.72.6"
},
"files": [
"index.d.ts",
"index.js",
"index.ts",
"components",
"dist",
"app.plugin.js",
"android/react_viro",
"android/viro_renderer",
"android/gvr_common",
"android/arcore_client",
"ios/dist",
"ios/ViroReact.podspec",
"bin",
"LICENSE"
],
"dependencies": {
"@expo/config-plugins": "^7.2.0",
"react": "^18.0.2"
},
"devDependencies": {
"@types/babel__core": "^7.12.9",
"@types/node": "^17.0.14",
"@types/react-native": "^0.70.6",
"typescript": "^5.2.2",
"react-native": "0.72.6"
}
}