-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.58 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.58 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
{
"name": "layout-manager-react",
"version": "1.0.0",
"description": "A modern React layout manager using flexbox with percentage-based sizing",
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js",
"types": "./dist/index.d.ts"
},
"./dist/style.css": "./dist/style.css"
},
"scripts": {
"dev": "vite",
"build": "vite build && tsc --declaration --emitDeclarationOnly --outDir dist --declarationMap false",
"preview": "vite preview",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:memory": "vitest run --reporter=verbose __test__/src/memory.test.tsx",
"e2e": "playwright test",
"e2e:headed": "playwright test --headed",
"e2e:install": "playwright install --with-deps",
"prepublishOnly": "npm run build"
},
"keywords": [
"react",
"layout",
"layout manager",
"layout manager react",
"flexbox",
"resize",
"resizable",
"resizable layout",
"drag-and-drop",
"drag and drop",
"typescript",
"split-pane",
"split-panel",
"split view",
"drag and drop"
],
"author": "Ashkan Hooshidar",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hrashkan/layout-manager-react.git"
},
"homepage": "https://github.com/hrashkan/layout-manager-react#readme",
"bugs": {
"url": "https://github.com/hrashkan/layout-manager-react/issues"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@playwright/test": "^1.56.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jsdom": "^27.0.0",
"@types/node": "^24.10.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/testing-library__jest-dom": "^5.14.9",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/coverage-v8": "^4.0.7",
"jsdom": "^27.1.0",
"typescript": "^5.0.0",
"vite": "^7.2.1",
"vitest": "^4.0.7"
},
"dependencies": {}
}