-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.06 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
{
"name": "react-linky",
"version": "1.2.0",
"description": "A React component to find links in text and turn them into html links",
"keywords": [
"react",
"linky",
"component",
"hyperlink"
],
"repository": {
"type": "git",
"url": "git+https://github.com/slasharash/react-linky.git"
},
"bugs": {
"url": "https://github.com/slasharash/react-linky/issues"
},
"homepage": "https://github.com/slasharash/react-linky#readme",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"index.d.ts"
],
"scripts": {
"build": "rollup -c",
"start": "rollup -cw"
},
"author": "Arash Kadkhodaei <slasharash@protonmail.com>",
"license": "MIT",
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"devDependencies": {
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rollup": "^2.27.1",
"rollup-plugin-typescript2": "^0.27.2",
"typescript": "^4.0.2"
}
}