-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.62 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
{
"name": "webcam",
"description": "Ultimate tools for working with media stream from you webcam",
"license": "MIT",
"private": true,
"author": {
"name": "SIBERIA CAN CODE 🧊",
"url": "https://github.com/siberiacancode"
},
"contributors": [
{
"name": "Mironychev Michael",
"url": "https://github.com/michael-mir"
},
{
"name": "Dmitry Babin",
"url": "https://github.com/debabin"
},
{
"name": "Sergey Kryavkin",
"url": "https://github.com/RiceWithMeat"
}
],
"repository": {
"type": "git",
"url": "https://github.com/siberiacancode/webcam.git"
},
"homepage": "https://github.com/siberiacancode/webcam",
"bugs": "https://github.com/siberiacancode/webcam/issues",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"deploy": "turbo run deploy",
"lint": "turbo run lint",
"format": "turbo run format",
"pretty": "turbo run pretty",
"unit-test": "turbo run unit-test",
"change": "beachball change --no-commit",
"release": "beachball publish --yes",
"prepare": "husky install && turbo telemetry disable && yarn build"
},
"devDependencies": {
"@siberiacancode/prettier": "^1.1.0",
"beachball": "^2.41.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"turbo": "^1.13.1"
},
"keywords": [
"media",
"video",
"react",
"canvas",
"camera",
"webcam",
"stream",
"userMedia",
"navigator",
"screenshot",
"constraints",
"getUserMedia",
"react-webcam",
"webcam-canvas"
]
}