-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.57 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.57 KB
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
{
"name": "@cloud-annotations/models",
"version": "0.1.9",
"description": "Cloud Annotations models for TensorFlow.js",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"jsdelivr": "dist/models.min.js",
"unpkg": "dist/models.min.js",
"types": "dist/index.d.ts",
"keywords": [
"image detection",
"object detection",
"machine learning",
"bounding boxes",
"classification",
"computer vision"
],
"repository": {
"type": "git",
"url": "https://github.com/cloud-annotations/javascript-sdk.git"
},
"bugs": {
"url": "https://github.com/cloud-annotations/javascript-sdk/issues"
},
"homepage": "https://github.com/cloud-annotations/javascript-sdk",
"author": "Nick Bourdakos",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.1.0",
"@rollup/plugin-sucrase": "^3.1.0",
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"chai": "^4.2.0",
"karma": "^6.3.14",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-typescript": "^5.2.0",
"lerna": "^3.22.1",
"mocha": "^8.1.3",
"rollup": "^2.21.0",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.6"
},
"dependencies": {
"@cloud-annotations/core": "^0.1.8",
"@tensorflow/tfjs": "1.4.0"
},
"scripts": {
"build": "yarn clean && yarn tsc && rollup -c",
"clean": "rimraf dist",
"test": "karma start --single-run"
},
"gitHead": "cc6ac0b96f4299b2761b6e9b2021625fc20dcd7b"
}