-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 2.25 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
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "spot-sdk-js",
"version": "0.0.4",
"description": "Develop applications and payloads for Spot using the unofficial Boston Dynamics Spot Node.js SDK.",
"main": "index.js",
"types": "./typings/index.d.ts",
"scripts": {
"install_arm64": "build-opencv --version 4.7.0 --flag=\"-DCMAKE_SYSTEM_PROCESSOR=arm64 -DCMAKE_OSX_ARCHITECTURES=arm64\" build",
"install_4.5.5_cuda": "build-opencv --version 4.7.0 --flags=\"-DWITH_CUDA=ON -DWITH_CUDNN=ON -DOPENCV_DNN_CUDA=ON -DCUDA_FAST_MATH=ON\" build",
"build_opencv": "build-opencv --version 4.7.0 build",
"rebuild_opencv": "build-opencv --version 4.7.0 --nobuild rebuild",
"build_proto": "node build.js",
"lint": "tslint typings/index.d.ts typings/**/*.d.ts && eslint --config .eslintrc.json .",
"docs": "jsdoc -c jsdoc.json"
},
"keywords": [
"spot",
"boston dynamics",
"boston",
"dynamics",
"robot",
"node",
"client"
],
"repository": {
"type": "git",
"url": "https://github.com/TheoPierne/spot-sdk-js.git"
},
"bugs": {
"url": "https://github.com/TheoPierne/spot-sdk-js/issues"
},
"author": "Théo Pierné",
"license": "SEE LICENSE IN LICENSE FILE",
"dependencies": {
"@grpc/grpc-js": "^1.9.0",
"@grpc/proto-loader": "^0.7.8",
"@types/google-protobuf": "^3.15.6",
"@u4/opencv4nodejs": "^6.5.2",
"argparse": "^2.0.1",
"async-lock": "^1.4.0",
"dotenv": "^16.3.1",
"expandenv": "^1.0.0",
"google-protobuf": "^3.21.2",
"ip": "^1.1.8",
"lodash": "^4.17.21",
"luxon": "^3.4.0",
"moment": "^2.29.4",
"node-fetch": "^3.3.2",
"node-pid-controller": "^1.0.1",
"numjs": "github:TheoPierne/numjs",
"prompt": "^1.3.0",
"protobufjs": "^7.2.4",
"python-struct": "^1.1.3",
"semver": "^7.5.4",
"sharp": "^0.31.2",
"tmp": "^0.2.1",
"underscore": "^1.13.6",
"uuid": "^9.0.0",
"which": "^3.0.1",
"winston": "^3.10.0"
},
"engines": {
"node": ">=16.13.0"
},
"devDependencies": {
"better-docs": "^2.7.2",
"dtslint": "^4.2.1",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.1",
"tslint": "^6.1.3",
"typescript": "^5.1.6"
}
}