-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 2 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
{
"name": "material-ui-linkify",
"version": "3.1.0",
"description": "Converts links in text to Material-UI Links using the Markdown Linkify library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack-dev-server --config webpack.config.dev.ts --hot --progress --mode development",
"build": "npm run build:types && npm run build:webpack",
"build:webpack": "webpack --config webpack.config.build.ts --progress --mode production",
"build:types": "tsc --emitDeclarationOnly --outFile dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/alexplumb/material-ui-linkify"
},
"keywords": [
"material",
"react",
"linkify"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/alexplumb/material-ui-linkify/issues"
},
"homepage": "https://github.com/alexplumb/material-ui-linkify",
"sideEffects": true,
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-proposal-object-rest-spread": "^7.14.7",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@types/linkify-it": "^3.0.2",
"@types/node": "^16.7.1",
"@types/react": "^17.0.62",
"@types/react-dom": "^17.0.9",
"@types/tapable": "^2.2.2",
"@types/tlds": "^1.207.0",
"@types/webpack": "^5.28.0",
"@types/webpack-env": "^1.16.2",
"@types/webpack-merge": "^4.1.5",
"babel-loader": "^8.2.2",
"react-hot-loader": "^4.13.0",
"ts-node": "^10.2.1",
"typescript": "^4.3.5",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.0.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"linkify-it": "^4.0.1",
"prop-types": "^15.7.2",
"tlds": "^1.240.0"
},
"peerDependencies": {
"@emotion/react": ">=11.4.1",
"@emotion/styled": ">=11.3.0",
"@mui/material": ">=5.0.1",
"react": ">=17.0.1",
"react-dom": ">=17.0.1"
}
}