-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
56 lines (56 loc) · 1.38 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
{
"name": "split-pane-react",
"version": "0.1.3",
"description": "Resizable split panes for React.js.",
"module": "./esm/index.js",
"typings": "./esm/index.d.ts",
"files": [
"esm",
"src"
],
"scripts": {
"dev": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build": "gulp --gulpfile ./build/gulpfile.js"
},
"keywords": [
"react",
"multipane",
"split pane",
"ui",
"resize",
"resizeable",
"layout",
"flexbox",
"components"
],
"author": "yyllff",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.18.0",
"@storybook/addon-actions": "^6.5.3",
"@storybook/addon-essentials": "^6.5.3",
"@storybook/addon-interactions": "^6.5.2",
"@storybook/addon-links": "^6.5.3",
"@storybook/builder-vite": "^0.1.35",
"@storybook/react": "^6.5.3",
"@storybook/testing-library": "^0.0.11",
"@vitejs/plugin-react": "^1.3.0",
"babel-loader": "^8.2.5",
"gulp": "^4.0.2",
"gulp-sass": "^5.1.0",
"gulp-typescript": "^6.0.0-alpha.1",
"rimraf": "^3.0.2",
"sass": "^1.52.0",
"typescript": "^4.6.3",
"vite": "^2.9.9"
},
"repository": "https://github.com/yyllff/split-pane-react",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"peerDependencies": {
"react": "^16.8 || ^17.0 || ^18.0",
"react-dom": "^16.8 || ^17.0 || ^18.0"
}
}