-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.97 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.97 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "react-webcam-pro",
"description": "Universal camera component for React — supports React 16-19, videoConstraints, mirror photo capture, TypeScript, and iOS/Android/webcam. Community-maintained fork of react-camera-pro.",
"version": "1.2.0",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"keywords": [
"camera",
"webcam",
"react",
"react-camera",
"react-webcam",
"react-camera-pro",
"getUserMedia",
"webRTC",
"ios",
"android",
"mobile",
"react19",
"typescript"
],
"repository": {
"url": "git+https://github.com/amareshsm/react-webcam-pro.git",
"type": "git"
},
"homepage": "https://github.com/amareshsm/react-webcam-pro#readme",
"bugs": {
"url": "https://github.com/amareshsm/react-webcam-pro/issues"
},
"author": "Amaresh <amareshsm13@gmail.com>",
"contributors": [
{
"name": "Martin Urban",
"email": "murban@purple-technology.com"
},
{
"name": "Purple Technology",
"url": "https://github.com/purple-technology"
}
],
"license": "MIT",
"types": "dist/index.d.ts",
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/jest": "^30.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"concurrently": "^9.1.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.0",
"eslint-plugin-react": "^7.37.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.4.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rollup": "^4.28.0",
"styled-components": "^6.1.0",
"ts-jest": "^29.2.0",
"ts-node": "^10.9.0",
"tslib": "^2.8.0",
"typescript": "^5.7.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"styled-components": "^5.0.0 || ^6.0.0"
},
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c -w",
"prepublishOnly": "npm run build",
"start-example": "cd example && npm start",
"deploy-example": "cd example && npm run deploy",
"dev": "concurrently --kill-others \"npm run build:watch\" \"npm run start-example\"",
"test": "jest --verbose",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --reporters=default",
"lint": "eslint ./src/**/*.ts ./src/**/*.tsx",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"typecheck": "tsc --noEmit",
"docs": "cd docs && npm start",
"docs:build": "cd docs && npm run build",
"docs:serve": "cd docs && npm run serve",
"docs:install": "cd docs && npm install"
},
"files": [
"dist"
]
}