-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.17 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
{
"name": "tflite-object-detection-tracking",
"version": "1.0.5",
"description": "A package to smooth object detection results, from tflite model output",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"dependencies": {},
"devDependencies": {
"@eslint/js": "^9.9.0",
"eslint": "9.x",
"globals": "^15.9.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.8",
"pinst": "^3.0.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.1"
},
"scripts": {
"build": "rm -rf build && tsc",
"lint": "eslint",
"prepare": "husky"
},
"keywords": [
"tflite",
"tflite image recognition",
"object detection",
"image recognition",
"react native image recognition",
"react native camera tflite"
],
"author": "Philip Lucks",
"license": "ISC",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/lucksp/tflite-object-detection-tracking.git"
},
"bugs": {
"url": "https://github.com/lucksp/tflite-object-detection-tracking/issues"
},
"homepage": "https://github.com/lucksp/tflite-object-detection-tracking"
}