-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 2.91 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "tbh-buttons",
"version": "1.0.0",
"description": "Button components for the web",
"main": "./dist/cjs/index.js",
"typings": "./dist/index.d.ts",
"module": "./dist/index.js",
"files": ["dist"],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/index.d.ts",
"browser": "./dist/tbh-buttons.min.js"
}
},
"scripts": {
"build": "npm run lint && npm run prettier && npm run clean && npm run build:esm && npm run build:cjs && npm run doWebpack",
"clean": "rimraf ./dist",
"build:esm": "tsc -p tsconfig.json",
"build:cjs": "tsc -p tsconfig-cjs.json",
"doWebpack": "webpack --config webpack.config.js",
"prettier": "npx prettier --write ./src",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ./src",
"lint:fix": "eslint --fix --ext .js,.jsx,.ts,.tsx ./src",
"prepublishOnly": "npm run build",
"test": "jest --coverage"
},
"author": "Jayant Navrange",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jayantur13/icon-share.git"
},
"homepage": "https://github.com/jayantur13/icon-share#readme",
"bugs": {
"url": "https://github.com/jayantur13/icon-share/issues"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/jayantur13"
},
{
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/jayantur13v"
}
],
"keywords": [
"share",
"social-share",
"share-icons",
"icon-share",
"react",
"next",
"remix",
"component",
"react-component",
"social",
"media",
"social-media",
"button"
],
"devDependencies": {
"@testing-library/jest-dom": "^6.1.2",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.5",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@types/react-icons": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"axios-mock-adapter": "^1.22.0",
"eslint": "^8.48.0",
"eslint-plugin-import": "^2.28.1",
"fetch-mock": "^9.11.0",
"husky": "^8.0.3",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"prettier": "^3.0.3",
"pretty-quick": "^3.1.3",
"react": "^18.2.0",
"react-icons": "^4.10.1",
"rimraf": "^5.0.1",
"terser-webpack-plugin": "^5.3.9",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.1.6",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"husky": {
"hooks": {
"pre-commit": "sh .husky/pre-commit"
}
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.14.10",
"@mui/styled-engine": "^5.14.10",
"@mui/system": "^5.14.10",
"axios": "^1.5.0"
}
}