-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.78 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.78 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
{
"name": "@damiarita/react-responsive-video",
"description": "React component to improve peformance of web pages with videos",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "eslint . && jest",
"build": "tsc",
"docs": "typedoc",
"format": "prettier --write .",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/damiarita/react-responsive-video.git"
},
"keywords": [
"performance",
"react",
"responsive",
"video"
],
"author": "Damià Rita",
"license": "MIT",
"bugs": {
"url": "https://github.com/damiarita/react-responsive-video/issues"
},
"homepage": "https://github.com/damiarita/react-responsive-video#readme",
"devDependencies": {
"@babel/preset-env": "^7.28.6",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@eslint/compat": "^2.0.1",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@testing-library/react": "^16.3.1",
"@types/jest": "^30.0.0",
"@types/react-test-renderer": "^19.1.0",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.53.0",
"babel-jest": "^30.2.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.34.1",
"globals": "^17.0.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jsdom": "^27.4.0",
"prettier": "^3.7.4",
"react-test-renderer": "^18.3.1",
"typedoc": "^0.28.16",
"typedoc-plugin-markdown": "^4.9.0",
"typescript": "^5.9.3"
},
"peerDependencies": {
"react": ">=16.8"
}
}