-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.11 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
{
"name": "replica-player",
"version": "0.1.2",
"description": "Video-player for React that is identical to YouTube's player. YouTube video-player clone.",
"scripts": {
"dev": "NODE_ENV=development rollup -c --watch",
"build": "rollup -c",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VityaSchel/replica-player.git"
},
"keywords": [
"player",
"video",
"youtube",
"react-component"
],
"main": "dist/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"author": "vityaschel <hi@hloth.dev> (https://hloth.dev/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/VityaSchel/replica-player/issues"
},
"homepage": "https://github.com/VityaSchel/replica-player#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.3",
"@svgr/rollup": "^6.2.1",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.19.0",
"eslint-plugin-react": "^7.30.1",
"postcss": "^8.4.16",
"postcss-input-range": "^5.0.0",
"rollup": "^2.76.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-root-import": "^1.0.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.53.0",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"@mui/base": "^5.0.0-alpha.89",
"@popperjs/core": "^2.11.5",
"@reduxjs/toolkit": "^1.8.3",
"autoprefixer": "^10.4.7",
"classnames": "^2.3.1",
"copy-to-clipboard": "^3.3.1",
"i18next": "^21.8.14",
"i18next-browser-languagedetector": "^6.1.4",
"react-hotkeys-hook": "^3.4.6",
"react-i18next": "^11.18.1",
"react-merge-refs": "^2.0.1",
"react-popper": "^2.3.0",
"react-redux": "^8.0.2",
"yup": "^0.32.11"
}
}