dockview-react 0.0.0-beta-0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1 @@
1
+ export * from 'dockview';
@@ -0,0 +1 @@
1
+ export * from 'dockview';
File without changes
package/package.json ADDED
@@ -0,0 +1,59 @@
1
+ {
2
+ "name": "dockview-react",
3
+ "version": "0.0.0-beta-0",
4
+ "description": "Zero dependency layout manager supporting tabs, grids and splitviews with ReactJS support",
5
+ "keywords": [
6
+ "splitview",
7
+ "split-view",
8
+ "gridview",
9
+ "grid-view",
10
+ "dockview",
11
+ "dock-view",
12
+ "grid",
13
+ "tabs",
14
+ "layout",
15
+ "layout manager",
16
+ "dock layout",
17
+ "dock",
18
+ "docking",
19
+ "splitter",
20
+ "drag-and-drop",
21
+ "drag",
22
+ "drop",
23
+ "react",
24
+ "react-component"
25
+ ],
26
+ "homepage": "https://github.com/mathuo/dockview",
27
+ "bugs": {
28
+ "url": "https://github.com/mathuo/dockview/issues"
29
+ },
30
+ "repository": {
31
+ "type": "git",
32
+ "url": "https://github.com/mathuo/dockview.git"
33
+ },
34
+ "license": "MIT",
35
+ "author": "https://github.com/mathuo",
36
+ "main": "./dist/cjs/index.js",
37
+ "module": "./dist/esm/index.js",
38
+ "types": "./dist/cjs/index.d.ts",
39
+ "files": [
40
+ "dist",
41
+ "README.md"
42
+ ],
43
+ "scripts": {
44
+ "build": "npm run build:package && npm run build:bundles",
45
+ "build:bundles": "rollup -c",
46
+ "build:cjs": "cross-env ../../node_modules/.bin/tsc --build ./tsconfig.json --verbose --extendedDiagnostics",
47
+ "build:css": "gulp sass",
48
+ "build:esm": "cross-env ../../node_modules/.bin/tsc --build ./tsconfig.esm.json --verbose --extendedDiagnostics",
49
+ "build:package": "npm run build:cjs && npm run build:esm && npm run build:css",
50
+ "clean": "rimraf dist/ .build/ .rollup.cache/",
51
+ "prepublishOnly": "npm run rebuild && npm run test",
52
+ "rebuild": "npm run clean && npm run build",
53
+ "test": "cross-env ../../node_modules/.bin/jest --selectProjects dockview",
54
+ "test:cov": "cross-env ../../node_modules/.bin/jest --selectProjects dockview --coverage"
55
+ },
56
+ "dependencies": {
57
+ "dockview": "^1.10.1"
58
+ }
59
+ }