|
1 | 1 | { |
2 | | - "name": "flexycakes", |
3 | | - "version": "1.0.0", |
4 | | - "description": "Community fork of caplin/FlexLayout (ISC). Not affiliated.", |
| 2 | + "name": "flexlayout-react", |
| 3 | + "version": "0.9.0", |
| 4 | + "description": "A multi-tab docking layout manager", |
| 5 | + "author": "Caplin Systems Ltd", |
| 6 | + "repository": { |
| 7 | + "type": "git", |
| 8 | + "url": "git+https://github.com/caplin/FlexLayout.git" |
| 9 | + }, |
| 10 | + "license": "ISC", |
| 11 | + "type": "module", |
| 12 | + "main": "./dist/index.js", |
| 13 | + "module": "./dist/index.js", |
| 14 | + "types": "./types/index.d.ts", |
| 15 | + "exports": { |
| 16 | + ".": { |
| 17 | + "import": "./dist/index.js", |
| 18 | + "types": "./types/index.d.ts" |
| 19 | + }, |
| 20 | + "./style/*": "./style/*" |
| 21 | + }, |
| 22 | + "files": [ |
| 23 | + "dist/", |
| 24 | + "types/", |
| 25 | + "style/" |
| 26 | + ], |
5 | 27 | "keywords": [ |
6 | 28 | "react", |
7 | 29 | "layout", |
|
21 | 43 | "docking library", |
22 | 44 | "docking layout" |
23 | 45 | ], |
24 | | - "homepage": "https://github.com/powerdragonfire/flex-core#readme", |
25 | | - "bugs": { |
26 | | - "url": "https://github.com/powerdragonfire/flex-core/issues" |
27 | | - }, |
28 | | - "repository": { |
29 | | - "type": "git", |
30 | | - "url": "git+https://github.com/powerdragonfire/flex-core.git" |
31 | | - }, |
32 | | - "license": "ISC", |
33 | | - "author": "powerdragonfire", |
34 | | - "maintainers": [ |
35 | | - { |
36 | | - "name": "powerdragonfire", |
37 | | - "email": "flex.core.git@gmail.com" |
38 | | - } |
39 | | - ], |
40 | | - "type": "module", |
41 | | - "exports": { |
42 | | - ".": { |
43 | | - "import": "./dist/index.js", |
44 | | - "types": "./types/index.d.ts" |
45 | | - }, |
46 | | - "./style/*": "./style/*" |
47 | | - }, |
48 | | - "main": "./dist/index.js", |
49 | | - "types": "./types/index.d.ts", |
50 | | - "directories": { |
51 | | - "test": "tests" |
52 | | - }, |
53 | | - "files": [ |
54 | | - "dist/", |
55 | | - "types/", |
56 | | - "style/" |
57 | | - ], |
58 | 46 | "scripts": { |
59 | 47 | "dev": "vite", |
60 | 48 | "preview": "vite preview", |
|
69 | 57 | "doc": "typedoc --out typedoc --exclude \"**/demo/**/*.tsx\" --excludeInternal --disableSources --excludePrivate --excludeProtected --readme none ./src", |
70 | 58 | "css": "sass style:style" |
71 | 59 | }, |
| 60 | + "eslintConfig": { |
| 61 | + "extends": "react-app" |
| 62 | + }, |
| 63 | + "peerDependencies": { |
| 64 | + "react": "^18.0.0 || ^19.0.0", |
| 65 | + "react-dom": "^18.0.0 || ^19.0.0" |
| 66 | + }, |
72 | 67 | "devDependencies": { |
73 | 68 | "@emotion/react": "^11.14.0", |
74 | 69 | "@emotion/styled": "^11.14.0", |
|
93 | 88 | "react": "^19.1.0", |
94 | 89 | "react-chartjs-2": "^5.3.0", |
95 | 90 | "react-dom": "^19.1.0", |
96 | | - "react-scripts": "5.0.1", |
| 91 | + "react-scripts": "^5.0.1", |
97 | 92 | "rimraf": "^6.0.1", |
98 | 93 | "sass": "^1.86.3", |
99 | 94 | "styled-components": "^6.1.17", |
|
102 | 97 | "typescript-eslint": "^8.30.1", |
103 | 98 | "vite": "^6.3.0", |
104 | 99 | "vitest": "^3.1.1" |
105 | | - }, |
106 | | - "peerDependencies": { |
107 | | - "react": "^18.0.0 || ^19.0.0", |
108 | | - "react-dom": "^18.0.0 || ^19.0.0" |
109 | | - }, |
110 | | - "module": "./dist/index.js", |
111 | | - "eslintConfig": { |
112 | | - "extends": "react-app" |
113 | 100 | } |
114 | 101 | } |
0 commit comments