-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
94 lines (94 loc) · 2.68 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.8",
"description": "A tiny and dependency free universal linking solution that turns any pattern in your text into clickable links (aka linkify). Supports i18n and emojis.",
"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://github.com/sponsors/anantoghosh"
},
{
"type": "individual",
"url": "https://ko-fi.com/anantoghosh"
}
],
"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",
"prettier": "prettier src/ --write"
},
"keywords": [
"react-linkify",
"react",
"linkify",
"link",
"url",
"jira",
"email",
"twitter",
"autolink",
"text",
"tag"
],
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@babel/preset-typescript": "^7.22.5",
"@babel/runtime": "^7.22.10",
"@rollup/plugin-terser": "^0.4.3",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@types/jest": "^27.5.2",
"@types/react": "^18.2.20",
"@types/testing-library__jest-dom": "^5.14.9",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"eslint": "^8.47.0",
"eslint-plugin-tree-shaking": "^1.10.0",
"jest": "^27.5.1",
"np": "^8.0.4",
"prettier": "^3.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.28.0",
"rollup-plugin-size": "^0.3.1",
"rollup-plugin-ts": "^3.4.4",
"ts-jest": "^27.1.5",
"tslib": "^2.6.1",
"typescript": "~4.9.5"
},
"peerDependencies": {
"react": "*"
}
}