-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.6 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
{
"name": "@hiddentn/yolo.js",
"version": "0.1.0",
"description": "a JavaScript API for YOLO Object detection in the browser and Node with tensorflow.js",
"repository": {
"type": "git",
"url": "https://github.com/TheHidden1/YOLO.JS.git"
},
"files": [
"build/**/*"
],
"main": "build/commonjs/index.js",
"types": "build/commonjs/index.d.ts",
"module": "build/es6/index.js",
"jsdelivr": "dist/yolo.js",
"unpkg": "dist/yolo.js",
"scripts": {
"clean": "rimraf dist build",
"start:browser": "webpack-dev-server --open --config webpack.dev.js",
"build:browser": "webpack --config webpack.prod.js",
"build:commonjs": "tsc",
"build:es6": "tsc --p tsconfig.es6.json",
"build": "npm run clean && npm run lint && npm run build:browser && npm run build:commonjs && npm run build:es6",
"lint": "tslint -p . -t verbose"
},
"bugs": {
"url": "https://github.com/TheHidden1/YOLO.JS/issues"
},
"homepage": "https://github.com/TheHidden1/YOLO.JS#readme",
"keywords": [
"YOLO",
"Classification",
"Object Detection",
"TF.js",
"AI",
"ML"
],
"author": "TheHidden1",
"license": "MIT",
"peerDependencies": {
"@tensorflow/tfjs": "^1.0.2"
},
"devDependencies": {
"@tensorflow/tfjs": "^1.0.2",
"@types/node": "^11.12.0",
"awesome-typescript-loader": "^5.2.1",
"rimraf": "2.6.2",
"terser-webpack-plugin": "^1.2.3",
"tslint": "^5.14.0",
"tslint-loader": "^3.5.4",
"typescript": "^3.3.3",
"webpack": "^4.29.5",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1",
"webpack-merge": "^4.2.1"
}
}