-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.38 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
{
"name": "fingerpose-gestures",
"version": "1.3.0",
"private": false,
"description": "fingerpose-gestures is a library built on top of Fingerpose classifier for hand landmarks detected by TensorFlow.js' handpose model. It can detect hand gestures inside a webcam source picture.",
"keywords": [
"handpose gestures",
"fingerpose gestures",
"fingerpose custom gestures",
"ai gestures",
"emoji gestures",
"finger gestures"
],
"homepage": "https://github.com/mAminP/fingerpose-gestures#readme",
"bugs": {
"url": "https://github.com/mAminP/fingerpose-gestures/issues"
},
"repository": "mAminP/fingerpose-gestures",
"license": "ISC",
"author": "M Amin Pasban",
"exports": {
".": {
"require": "./dist/index.js"
}
},
"main": "dist/index.js",
"typings": "./index.d.ts",
"files": [
"dist",
"index.d.ts"
],
"scripts": {
"build": "siroc build",
"dev": "nuxt demo"
},
"dependencies": {
"fingerpose": "0.0.2"
},
"devDependencies": {
"@nuxt/types": "^2.15.7",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/vuetify": "^1.12.1",
"@tensorflow-models/handpose": "0.0.7",
"@tensorflow/tfjs": "^3.8.0",
"@tensorflow/tfjs-backend-webgl": "^3.8.0",
"@types/node": "latest",
"nuxt": "^2.15.8",
"nuxt-property-decorator": "^2.9.1",
"typescript": "^4.3.5",
"vue-web-cam": "^1.9.0"
}
}