-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.2 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.2 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
{
"name": "@u-wave/react-youtube",
"description": "YouTube player component for React.",
"version": "1.0.0-rc.1",
"author": "Renée Kooi <renee@kooi.me>",
"bugs": {
"url": "https://github.com/u-wave/react-youtube/issues"
},
"dependencies": {
"@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
"@types/youtube": "^0.2.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@microsoft/api-extractor": "^7.48.1",
"@types/node": "^22.19.11",
"@types/react-dom": "^19.0.2",
"@u-wave/react-youtube-example": "file:example",
"@vitest/eslint-plugin": "^1.6.7",
"eslint": "^9.39.2",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.0",
"md-insert": "^2.0.0",
"min-react-env": "^2.0.0",
"prop-types-table": "^2.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"tsdown": "^0.21.0",
"typescript": "~6.0.3",
"typescript-eslint": "^8.54.0",
"vitest": "^4.0.18"
},
"homepage": "https://github.com/u-wave/react-youtube#readme",
"keywords": [
"player",
"react",
"react-component",
"video",
"youtube"
],
"license": "MIT",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"typings": {
"require": "./dist/index.d.cts",
"import": "./dist/index.d.mts"
}
},
"./package.json": "./package.json"
},
"types": "./dist/index.d.cts",
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0 || ^19.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/u-wave/react-youtube.git"
},
"scripts": {
"build": "tsdown src/index.tsx --format esm,cjs --dts",
"docs": "prop-types-table src/index.tsx | md-insert README.md --header Props -i",
"example": "npm run --prefix example start",
"browserslist": "npx browserslist --mobile-to-desktop '> 0.5%, last 2 versions, Firefox ESR, not dead, not IE 11' > .browserslistrc",
"test": "npm run tests-only && npm run types && npm run lint",
"types": "tsc --noEmit -p .",
"lint": "eslint .",
"tests-only": "vitest run"
},
"sideEffects": false
}