forked from tensorflow/tfjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.82 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
56
57
58
59
60
61
62
63
64
{
"name": "@tensorflow/tfjs-react-native",
"version": "0.2.1",
"description": "TensorFlow.js platform implementation for React Native",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "Apache-2.0",
"keywords": [
"tensorflow",
"tensorflowjs",
"machine learning",
"deep learning",
"neural networks",
"react native"
],
"scripts": {
"publish-local": "rimraf dist/ && yarn build && rollup -c && yalc push",
"build": "./scripts/enumerate-tests.js && tsc",
"build-npm": "yarn build",
"link-local": "yalc link",
"unlink-local": "yalc remove",
"lint": "tslint -p . -t verbose",
"update-apk": "./scripts/update-apk.sh"
},
"devDependencies": {
"@react-native-community/async-storage": "^1.4.2",
"@tensorflow/tfjs-core": ">=1.3.0",
"@types/base64-js": "^1.2.5",
"@types/jasmine": "~3.3.0",
"@types/react-native": "0.60.2",
"@types/react-native-fs": "^2.13.0",
"clang-format": "~1.2.2",
"expo-asset": "^7.0.0",
"expo-camera": "^7.0.0",
"expo-gl": "^7.0.0",
"gts": "^1.1.2",
"react": "^16.12.0",
"rimraf": "~2.6.2",
"rollup": "^0.58.2",
"rollup-plugin-commonjs": "9.1.3",
"rollup-plugin-node-resolve": "3.3.0",
"rollup-plugin-typescript2": "0.13.0",
"rollup-plugin-uglify": "~3.0.0",
"tslint": "~5.11.0",
"tslint-no-circular-imports": "^0.5.0",
"typescript": "3.5.3",
"yalc": "^1.0.0-pre.32"
},
"dependencies": {
"base64-js": "^1.3.0",
"buffer": "^5.2.1",
"jpeg-js": "^0.3.6"
},
"peerDependencies": {
"@react-native-community/async-storage": "^1.4.2",
"@tensorflow/tfjs-core": ">=1.3.0",
"expo-asset": "^7.0.0",
"expo-camera": "^7.0.0",
"expo-gl": "^7.0.0",
"react": "^16.12.0",
"react-native": ">= 0.58.0",
"react-native-fs": "^2.16.1"
}
}