-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 2.04 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
{
"name": "react-select-media-devices-modal",
"description": "A React component library for select media devices",
"version": "1.2.2",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kadoshita/react-select-media-devices-modal.git"
},
"homepage": "https://kadoshita.github.io/react-select-media-devices-modal/",
"bugs": "https://github.com/kadoshita/react-select-media-devices-modal/issues",
"main": "./dist/react-select-media-devices-modal.umd.js",
"module": "./dist/react-select-media-devices-modal.mjs",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/react-select-media-devices-modal.mjs",
"require": "./dist/react-select-media-devices-modal.umd.js"
},
"./dist/style.css": "./dist/style.css"
},
"files": [
"dist"
],
"keywords": [
"react",
"modal",
"webrtc",
"compoennt",
"mediadevices",
"getusermedia",
"enumeratedevices"
],
"scripts": {
"dev": "vite serve example",
"build": "vite build",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"test:e2e": "vitest run -c vitest.e2e.config.ts",
"test:e2e:watch": "vitest watch -c vitest.e2e.config.ts"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^7.0.1"
},
"devDependencies": {
"@playwright/test": "^1.35.1",
"@rollup/plugin-typescript": "^12.1.0",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/node": "^22.0.0",
"@types/react": "^18.2.14",
"@vitejs/plugin-react": "^4.0.1",
"@vitest/coverage-v8": "^2.0.0",
"@vitest/ui": "^2.0.0",
"jsdom": "^25.0.0",
"playwright": "^1.35.1",
"vite": "^6.0.2",
"vitest": "^2.0.0"
}
}