-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.21 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
{
"name": "@api.video/react-player",
"version": "1.1.0",
"description": "api.video React player component",
"keywords": [
"player",
"api.video",
"video",
"react"
],
"homepage": "https://github.com/apivideo/api.video-react-player#readme",
"bugs": "https://github.com/apivideo/api.video-react-player/issues",
"license": "MIT",
"author": "api.video <[email protected]> (https://api.video/)",
"repository": {
"type": "git",
"url": "git+https://github.com/apivideo/api.video-react-player.git"
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"typings": "dist/index.d.ts",
"files": [
"dist/",
"CHANGELOG.md"
],
"scripts": {
"tslint": "tslint --project .",
"build": "rollup -c",
"watch": "rollup -c -w",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"react": ">=16.6.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/react": "^18.3.3",
"react": "^18.3.1",
"rollup": "^4.18.0",
"rollup-plugin-typescript2": "^0.36.0",
"tslint": "^6.1.3",
"typescript": "^5.4.5"
},
"dependencies": {
"@api.video/player-sdk": "^1.2.31"
}
}