-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.3 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
{
"name": "@charkour/react-reactions",
"version": "0.5.0",
"private": false,
"description": "😲 Create custom reaction pickers and counters or use your favorites!",
"keywords": [
"react",
"reactions",
"custom",
"reaction picker",
"react-component",
"reaction-picker",
"slack",
"pokemon",
"github",
"facebook",
"youtube",
"selector",
"counter"
],
"homepage": "https://github.com/charkour/react-reactions",
"bugs": {
"url": "https://github.com/charkour/react-reactions/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/charkour/react-reactions.git"
},
"license": "MIT",
"author": "Charles Kornoelje",
"main": "dist/index.js",
"module": "dist/react-reactions.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"analyze": "size-limit --why",
"build": "tsdx build",
"build-storybook": "build-storybook",
"fix": "tsdx lint --fix src test",
"postinstall": "husky install",
"lint": "tsdx lint src test",
"prepare": "tsdx build",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"size": "size-limit",
"start": "tsdx watch",
"storybook": "start-storybook -p 6006",
"test": "tsdx test --passWithNoTests"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@babel/core": "7.14.2",
"@size-limit/preset-small-lib": "4.10.2",
"@storybook/addon-essentials": "6.2.9",
"@storybook/addon-links": "6.2.9",
"@storybook/addons": "6.2.9",
"@storybook/react": "6.2.9",
"@types/react": "17.0.5",
"@types/react-dom": "17.0.5",
"babel-loader": "8.2.2",
"eslint-plugin-react-hooks": "2.5.1",
"husky": "6.0.0",
"pinst": "2.1.6",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-is": "17.0.2",
"size-limit": "4.10.2",
"tsdx": "0.14.1",
"tslib": "2.2.0",
"typescript": "4.2.4"
},
"peerDependencies": {
"react": ">=16 || 17.0.2"
},
"engines": {
"node": ">=10"
},
"size-limit": [
{
"path": "dist/react-reactions.cjs.production.min.js",
"limit": "55 KB"
},
{
"path": "dist/react-reactions.esm.js",
"limit": "55 KB"
}
]
}