forked from TimboKZ/Chonky
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 2.67 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
111
112
{
"name": "@ezmidwestern/chonky",
"version": "3.0.0",
"description": "A File Browser component for React",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why"
},
"peerDependencies": {
"react": ">=16"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"semi": true,
"singleQuote": true,
"useTabs": false,
"printWidth": 88
},
"module": "dist/chonky.esm.js",
"size-limit": [
{
"path": "dist/chonky.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/chonky.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@babel/core": "^7.13.10",
"@size-limit/preset-small-lib": "^4.10.1",
"@testing-library/react": "^11.2.5",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"babel-loader": "^8.2.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-is": "^17.0.1",
"size-limit": "^4.10.1",
"tsdx": "^0.14.1",
"tslib": "^2.1.0",
"typescript": "^4.2.3"
},
"dependencies": {
"@material-ui/core": "4.11.3",
"@reduxjs/toolkit": "^1.5.0",
"@types/classnames": "^2.2.11",
"@types/fuzzy-search": "^2.1.0",
"@types/memoizee": "^0.4.5",
"@types/react": "^17.0.3",
"@types/react-redux": "^7.1.16",
"@types/react-virtualized-auto-sizer": "^1.0.0",
"@types/react-window": "^1.8.2",
"@types/redux-watch": "^1.1.0",
"@types/shortid": "^0.0.29",
"classnames": "^2.2.6",
"deepmerge": "^4.2.2",
"exact-trie": "^1.0.13",
"fast-sort": "^2.2.0",
"filesize": "^6.1.0",
"fuzzy-search": "^3.2.1",
"hotkeys-js": "^3.8.3",
"react-dnd": "11",
"react-dnd-html5-backend": "11",
"react-intl": "^5.13.2",
"react-jss": "^10.5.1",
"react-redux": "^7.2.2",
"react-virtualized-auto-sizer": "^1.0.5",
"react-window": "^1.8.6",
"redux-watch": "^1.2.0",
"shortid": "^2.2.16",
"styled-components": "^5.3.0",
"tsdef": "^0.0.14"
},
"homepage": "https://chonky.io/",
"author": {
"name": "Timur Kuzhagaliyev",
"email": "[email protected]",
"url": "https://foxypanda.me/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TimboKZ/Chonky.git"
},
"bugs": {
"url": "https://github.com/TimboKZ/Chonky/issues"
},
"keywords": [
"file",
"chonky",
"file-dialog",
"file-browser",
"react-component"
]
}