-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
94 lines (94 loc) · 2.71 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "react-linkify-it",
"author": "Ananto Ghosh",
"version": "1.0.4",
"description": "A tiny react package that turns urls (with i18n and emoji support), emails, jira tickets, twitter handles, anything you want! in your text clickable (aka linkify).",
"license": "MIT",
"type": "module",
"source": "src/index.tsx",
"packageManager": "[email protected]",
"main": "./dist/react-linkify-it.legacy.umd.min",
"exports": {
".": "./dist/react-linkify-it.esm.js",
"./legacy": "./dist/react-linkify-it.legacy.umd.min",
"./dist/react-linkify-it.legacy.umd.min": "./dist/react-linkify-it.legacy.umd.min"
},
"module": "./dist/react-linkify-it.esm.js",
"unpkg": "./dist/react-linkify-it.legacy.umd.min.js",
"types": "./dist/react-linkify-it.esm.d.ts",
"sideEffects": false,
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/anantoghosh/react-linkify-it.git"
},
"funding": {
"type" : "individual",
"url" : "https://www.buymeacoffee.com/ananto"
},
"bugs": {
"url": "https://github.com/anantoghosh/react-linkify-it/issues"
},
"homepage": "https://github.com/anantoghosh/react-linkify-it",
"scripts": {
"release": "np",
"build": "npm run build:latest && npm run build:legacy",
"build:latest": "rollup -c",
"build:legacy": "rollup -c rollup-legacy.config.js",
"test": "jest --coverage"
},
"keywords": [
"react-linkify",
"react",
"linkify",
"link",
"url",
"jira",
"email",
"twitter",
"autolink",
"text",
"tag"
],
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-typescript": "^8.3.0",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@types/jest": "^27.4.0",
"@types/react": "^17.0.39",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "^8.9.0",
"eslint-plugin-tree-shaking": "^1.10.0",
"jest": "^27.5.1",
"np": "^7.6.0",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.68.0",
"rollup-plugin-size": "^0.2.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^2.0.5",
"ts-jest": "^27.1.3",
"tslib": "^2.3.1",
"typescript": "^4.5.5"
},
"peerDependencies": {
"react": "*"
},
"pnpm": {
"overrides": {
"ansi-regex@>2.1.1 <5.0.1": ">=5.0.1",
"axios@<=0.21.1": ">=0.21.2",
"axios@<0.21.1": ">=0.21.1",
"follow-redirects@<1.14.7": ">=1.14.7",
"follow-redirects@<1.14.8": ">=1.14.8"
}
}
}