-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
85 lines (85 loc) · 2.11 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
{
"name": "react-resplit",
"description": "Resizable split pane layouts for React applications",
"keywords": [
"react",
"split",
"pane",
"panels",
"resize",
"resizable",
"grid"
],
"author": "Kenan Yusuf <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/KenanYusuf/react-resplit.git"
},
"bugs": {
"url": "https://github.com/KenanYusuf/react-resplit/issues"
},
"license": "MIT",
"type": "module",
"version": "1.3.2",
"main": "./dist/resplit.umd.cjs",
"module": "./dist/resplit.es.js",
"types": "./dist/resplit.d.ts",
"exports": {
".": {
"import": "./dist/resplit.es.js",
"require": "./dist/resplit.umd.cjs",
"types": "./dist/resplit.d.ts"
}
},
"files": [
"dist"
],
"size-limit": [
{
"limit": "5 kB",
"path": "dist/resplit.es.js"
}
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint . --ext .ts,.tsx",
"size": "yarn build && size-limit"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
},
"devDependencies": {
"@codesandbox/sandpack-react": "^1.18.2",
"@size-limit/preset-small-lib": "^8.1.2",
"@types/node": "^18.11.17",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"@vitejs/plugin-react": "^3.0.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tsdoc": "^0.2.17",
"postcss": "^8.4.19",
"prettier": "^2.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"size-limit": "^8.1.2",
"tailwindcss": "^3.2.4",
"typescript": "^4.6.3",
"vite": "^4.0.5",
"vite-plugin-dts": "^1.7.1"
},
"dependencies": {
"@radix-ui/react-slot": "^1.0.2"
}
}