-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.29 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
{
"name": "@mercuriya/slate-linkify",
"version": "0.5.0-alpha.6",
"description": "A Slate plugin that replaces pasted URLs with an anchor tags.",
"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-linkify#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 tsconfig.tsbuildinfo",
"prebuild": "yarn clean",
"prepublishOnly": "yarn clean && yarn build"
},
"dependencies": {
"linkify-it": "^4.0.1",
"tlds": "^1.238.0",
"tslib": "^2.5.2"
},
"peerDependencies": {
"react": "*",
"slate": "^0.103.0",
"slate-react": "^0.104.0"
},
"devDependencies": {
"@types/linkify-it": "^3.0.2"
}
}