-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.97 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
{
"name": "@dvgs/vgesture",
"private": false,
"version": "1.2.5",
"author": "dovigod",
"description": "Typescript library which gives ability to interact with DOM elements with hand gestures via webcam.",
"type": "module",
"main": "./build/vgesture.js",
"module": "./build/vgesture.js",
"exports": {
".": {
"import": "./build/vgesture.js"
},
"./plugins": "./build/plugins/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/dovigod/V-Gesture"
},
"files": [
"build",
"package.json",
"readme.md"
],
"browserslist": [
"chrome > 53, edge > 12 , safari > 11, firefox > 36, opera > 40, ChromeAndroid >= 124, ios_saf >= 11, Samsung >= 6.2, op_mob >= 80, UCAndroid >= 15.5 , Android >= 124, FirefoxAndroid >=125, and_qq >=14.9 ,kaios >= 3.1 , not ie all, not op_mini all"
],
"keywords": [
"VGesture",
"V-Gesture",
"v-gesture",
"gesture",
"webcam",
"gesture",
"hand detector",
"hand detection",
"virtual pointer",
"tensorflow",
"canvas",
"html5"
],
"scripts": {
"dev": "vite --host=0.0.0.0 --port=3000 ",
"build": "rollup -c",
"release": "node ./release.mjs",
"doc": "typedoc"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"conventional-github-releaser": "^3.1.5",
"dotenv": "^16.4.5",
"path": "^0.12.7",
"rollup": "^4.18.0",
"rollup-plugin-dts": "^6.1.1",
"standard-version": "^9.5.0",
"typedoc": "^0.26.5",
"typescript": "^5.2.2",
"vite": "^5.2.0",
"vite-plugin-dts": "^3.9.1",
"vite-plugin-mkcert": "^1.17.5"
},
"dependencies": {
"@tensorflow-models/hand-pose-detection": "^2.0.1",
"@tensorflow/tfjs-backend-wasm": "^4.19.0",
"@tensorflow/tfjs-backend-webgl": "^4.19.0",
"@tensorflow/tfjs-converter": "^4.19.0",
"@tensorflow/tfjs-core": "^4.19.0",
"fastdom": "^1.0.12"
}
}