-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.15 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
{
"name": "@mercuriya/slate-video",
"version": "0.2.0-alpha.4",
"description": "A Slate plugin that allows to use embedded video",
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"typings": "dist/esm/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/newsiberian/slate-plugins.git"
},
"bugs": {
"url": "https://github.com/newsiberian/slate-plugins/issues"
},
"homepage": "https://github.com/newsiberian/slate-plugins/tree/master/packages/slate-video#readme",
"keywords": [
"slate"
],
"files": [
"dist/esm",
"dist/cjs",
"CHANGELOG.md",
"LICENSE.md",
"package.json"
],
"publishConfig": {
"access": "public"
},
"private": false,
"scripts": {
"build": "yarn build:tsc",
"build:tsc": "tsc --build tsconfig.esm.json tsconfig.cjs.json",
"clean": "rimraf dist",
"prebuild": "yarn clean",
"prepublishOnly": "yarn clean && yarn build"
},
"dependencies": {
"react-player": "^2.12.0",
"tslib": "^2.5.2"
},
"peerDependencies": {
"slate": "^0.103.0",
"slate-react": "^0.104.0"
}
}