-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
54 lines (54 loc) · 1.08 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
{
"name": "tensorflow",
"version": "0.7.0",
"description": "Node.js module for using TensorFlow graphs and models",
"keywords": [
"tensorflow",
"tf",
"tensor",
"machine learning",
"ml",
"ai",
"neural networks",
"neuralnetworks",
"deeplearning",
"model",
"numerical computation",
"google"
],
"homepage": "https://github.com/nikhilk/node-tensorflow#readme",
"author": "Nikhil Kothari <nikhilko@google.com>",
"contributors": [
{
"name": "Nikhil Kothari",
"email": "nikhilko@google.com",
"url": "http://www.nikhilk.net"
}
],
"license": "Apache 2.0",
"repository": "github:nikhilk/node-tensorflow",
"files": [
"src",
"setup",
"README.md"
],
"main": "src/index.js",
"dependencies": {
"ffi": "^2.2.0",
"pbf": "^3.1.0",
"ref": "^1.3.5",
"ref-array": "^1.2.0",
"ref-struct": "^1.1.0"
},
"engines": {
"node": ">=8.9.3"
},
"os": [
"linux",
"darwin"
],
"scripts": {
"postinstall": "npm run -s installtf",
"installtf": "node setup/setup.js"
}
}