-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
110 lines (110 loc) · 3.68 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
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
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "react-twitch-embed-video",
"version": "3.1.0",
"author": "Erik Guzman <[email protected]>",
"description": "Allows you to easily embed a twitch video in your ReactJS application",
"bugs": {
"url": "https://github.com/talk2MeGooseman/react-twitch-embed-video/issues"
},
"homepage": "https://talk2megooseman.github.io/react-twitch-embed-video/",
"license": "MIT",
"type": "module",
"files": [
"dist",
"src",
"tsconfig.json"
],
"main": "dist/react-twitch-embed-video.umd.cjs",
"module": "dist/react-twitch-embed-video.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/react-twitch-embed-video.js",
"require": "./dist/react-twitch-embed-video.umd.cjs"
}
},
"repository": {
"type": "git",
"url": "https://github.com/talk2MeGooseman/react-twitch-embed-video.git"
},
"scripts": {
"build": "vite build",
"dev": "storybook dev -p 9001",
"lint": "eslint --color --ext .js,.md,.ts,.tsx src",
"lint:fix": "eslint --fix --color --ext .js,.md,.ts,.tsx src",
"release-storybook": "storybook build -o .out",
"release": "vite build",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"peerDependencies": {
"react": ">= 17.0.0",
"react-dom": ">= 17.0.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^3",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/preset-create-react-app": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/react-vite": "^8.4.7",
"@storybook/storybook-deployer": "^2.8.16",
"@storybook/theming": "^8.4.7",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/window-or-global": "^1.0.6",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"@vitejs/plugin-react": "^4.3.0",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^8.57.0",
"eslint-config-adjunct": "^4.13.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-auto": "^0.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-chai-expect": "^3.0.0",
"eslint-plugin-chai-friendly": "^0.7.4",
"eslint-plugin-const-case": "^1.2.2",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-html": "^8.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest-async": "^1.0.3",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-no-constructor-bind": "^2.0.4",
"eslint-plugin-no-secrets": "^0.8.9",
"eslint-plugin-no-unsanitized": "^4.0.2",
"eslint-plugin-no-use-extend-native": "^0.5.0",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-pii": "^1.0.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-security": "^2.1.1",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-sonarjs": "^0.24.0",
"eslint-plugin-storybook": "^0.11.2",
"eslint-plugin-switch-case": "^1.1.2",
"eslint-plugin-testing-library": "^6.2.0",
"eslint-plugin-unicorn": "^51.0.1",
"eslint-plugin-xss": "^0.1.12",
"jsdom": "^24.1.3",
"lefthook": "^1.10.5",
"prettier": "^3.4.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"storybook": "^8.4.7",
"typescript": "^5.7.3",
"vite": "^6.0.0",
"vite-plugin-dts": "^4.5.0",
"vitest": "^2.1.8"
},
"dependencies": {
"window-or-global": "^1.0.1"
}
}