-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 1.88 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
{
"name": "@kinescope/react-kinescope-player",
"version": "0.5.2",
"description": "React.js wrapper for Kinescope player",
"scripts": {
"prettier": "npx prettier --parser typescript --write \"{src,packages}/**/*.{tsx,ts}\"",
"dev": "npx microbundle watch --jsx React.createElement --compress false",
"build": "npx microbundle --name=KinescopePlayer --globals react=React --jsx React.createElement --compress false --no-sourcemap",
"release": "npx standard-version -a"
},
"keywords": [
"React",
"Kinescope",
"Player",
"component"
],
"bugs": {
"url": "https://github.com/kinescope/react-kinescope-player/issues"
},
"homepage": "https://github.com/kinescope/react-kinescope-player#readme",
"author": "Vadim Burlakov <vadim@kinescope.io>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kinescope/react-kinescope-player.git"
},
"publishConfig": {
"access": "public",
"tag": "latest"
},
"exports": {
".": {
"types": "./dist/player.d.ts",
"import": "./dist/player.module.js",
"require": "./dist/player.js",
"default": "./dist/player.module.js"
}
},
"main": "dist/player.js",
"module": "dist/player.module.js",
"jsnext:main": "dist/player.module.js",
"unpkg": "dist/player.umd.js",
"umd:main": "dist/player.umd.js",
"types": "dist/player.d.ts",
"typings": "dist/player.d.ts",
"source": "src/player.tsx",
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@kinescope/player-iframe-api-loader": "^0.0.12",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"microbundle": "^0.15.1",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-fast-compare": "^3.2.2",
"standard-version": "^9.5.0",
"typescript": "^5.6.3"
},
"standard-version": {
"skip": {
"tag": true,
"commit": true
}
}
}