-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.11 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.11 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
{
"name": "@react5/you-player",
"version": "0.4.12",
"description": "Youtube player React component.",
"private": false,
"keywords": [
"youtube",
"video",
"player",
"react"
],
"homepage": "https://github.com/react5com/you-player#readme",
"bugs": {
"url": "https://github.com/react5com/you-player/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/react5com/you-player.git"
},
"license": "MIT",
"author": "React5",
"type": "module",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "npm run tsc & rollup -c",
"format": "prettier-eslint --write \"src/**/*.ts(x)?\"",
"lint": "eslint \"src/**\" --ext .ts --ext .tsx",
"clean": "rimraf dist",
"watch": "rollup -c -w --filterLogs '!message:*__PURE__*'",
"dev": "npm-run-all --parallel tsc-watch watch serve",
"serve": "rollup -c -w --environment DEV_SERVER:true",
"tsc": "tsc -b",
"tsc-watch": "tsc -b --watch",
"test": "jest"
},
"peerDependencies": {
"react": ">=17.0",
"react-dom": ">=17.0"
},
"devDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"eslint": "^9.17.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"prettier": "^3.4.2",
"prettier-eslint": "^16.3.0",
"prettier-eslint-cli": "^8.0.1",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-typescript": "^12.1.2",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-replace": "^6.0.2",
"rollup-plugin-copy": "^3.5.0",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@types/jest": "^29.5.14",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"jest": "^29.7.0",
"rollup": "^4.29.1",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"rollup-plugin-serve": "^1.1.1"
}
}