-
Notifications
You must be signed in to change notification settings - Fork 215
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·139 lines (139 loc) · 4.21 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·139 lines (139 loc) · 4.21 KB
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "flexlayout-react",
"version": "0.11.0",
"description": "A multi-tab docking layout manager",
"author": "Caplin Systems Ltd",
"repository": {
"type": "git",
"url": "git+https://github.com/caplin/FlexLayout.git"
},
"license": "MIT",
"type": "module",
"sideEffects": [
"**/*.css",
"**/*.scss"
],
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.28.0",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./style/*": "./style/*"
},
"files": [
"dist/",
"types/",
"style/**",
"!**/*.css.map"
],
"keywords": [
"react",
"layout",
"dock",
"popout",
"tabs",
"tabset",
"splitter",
"drag",
"drop",
"reactjs",
"flexlayout",
"flex layout",
"layout manager",
"drag and drop",
"split view",
"docking library",
"docking layout",
"docking",
"dockable",
"tabbed",
"pane",
"resizable",
"floating",
"workspace",
"typescript"
],
"scripts": {
"dev": "vite --host",
"preview": "vite preview",
"prepack": "npm run build",
"build": "npm run build:clean && npm run generate:interfaces && npm run typecheck && npm run build:demo && npm run build:examples && npm run css && npm run build:lib && npm run build:types && npm run doc",
"build:clean": "rimraf demo/dist examples/dist dist/ types/ typedoc/",
"build:demo": "vite build",
"build:types": "tsc -p tsconfig-types.json",
"build:lib": "vite build --config vite.config.lib.ts",
"generate:interfaces": "tsx scripts/generate-json-interfaces.ts",
"check:interfaces": "tsx scripts/generate-json-interfaces.ts --check",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"playwright": "playwright test --project=chromium",
"playwright:ui": "playwright test --ui",
"fuzz": "cross-env FUZZ=1 playwright test --project=chromium fuzz",
"fuzz:200": "cross-env FUZZ=1 FUZZ_ITERATIONS=200 playwright test --project=chromium fuzz",
"lint": "npm run check:interfaces && eslint src demo examples tests tests-playwright",
"format": "prettier --write src demo examples tests tests-playwright",
"format:check": "prettier --check src demo examples tests tests-playwright",
"dev:examples": "vite --config examples/vite.config.examples.ts",
"build:examples": "vite build --config examples/vite.config.examples.ts",
"typecheck": "tsc -p tsconfig.json",
"doc": "typedoc --out typedoc --exclude \"**/demo/**/*.tsx\" --excludeInternal --disableSources --excludePrivate --excludeProtected --readme none ./src",
"css": "sass style:style"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.13.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@eslint/js": "^10.0.1",
"@monaco-editor/react": "^4.7.0",
"@mui/material": "^9.4.0",
"@mui/x-data-grid": "^9.13.0",
"@playwright/test": "^1.63.0",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.3",
"@types/node": "^25.9.5",
"@types/prismjs": "^1.26.6",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.7",
"@vitejs/plugin-react": "^6.1.1",
"@vitest/coverage-v8": "^4.1.11",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-serialize": "^0.14.0",
"@xterm/xterm": "^6.0.0",
"ag-grid-community": "^35.3.1",
"ag-grid-react": "^35.3.1",
"chart.js": "^4.5.1",
"cross-env": "^7.0.3",
"eslint": "^10.10.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.12.0",
"jsdom": "^30.0.1",
"ol": "^10.10.0",
"prettier": "^3.9.6",
"prismjs": "^1.30.0",
"react": "^19.2.8",
"react-chartjs-2": "^5.3.1",
"react-dom": "^19.2.8",
"rimraf": "^6.1.3",
"sass": "^1.104.0",
"styled-components": "^6.5.3",
"tsx": "^4.23.13",
"typedoc": "^0.28.20",
"typescript": "^6.0.3",
"typescript-eslint": "^8.70.0",
"vite": "^8.2.2",
"vitest": "^4.1.11"
}
}