@n-uf/hypr-tiling 26.7.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.
package/package.json ADDED
@@ -0,0 +1,96 @@
1
+ {
2
+ "name": "@n-uf/hypr-tiling",
3
+ "version": "26.7.0",
4
+ "private": false,
5
+ "description": "Dynamic tiling for React: a recursive split-tree renderer for drag/drop, resizable, keyboard-controlled panes — inspired by Hyprland.",
6
+ "keywords": [
7
+ "react",
8
+ "tiling",
9
+ "dynamic-tiling",
10
+ "split-layout",
11
+ "split-pane",
12
+ "pane-layout",
13
+ "react-layout",
14
+ "dock-layout",
15
+ "window-manager-ui",
16
+ "resizable-panes",
17
+ "drag-and-drop",
18
+ "tiling-window-manager",
19
+ "layout-engine",
20
+ "dashboard",
21
+ "hyprland"
22
+ ],
23
+ "license": "LicenseRef-PolyForm-Perimeter-1.0.1",
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "git+https://github.com/n-uf/hypr-tiling.git"
27
+ },
28
+ "homepage": "https://hypr-tiling.n-uf.com/",
29
+ "bugs": {
30
+ "url": "https://github.com/n-uf/hypr-tiling/issues"
31
+ },
32
+ "main": "./dist/index.cjs",
33
+ "module": "./dist/index.mjs",
34
+ "types": "./dist/index.d.ts",
35
+ "exports": {
36
+ ".": {
37
+ "types": "./dist/index.d.ts",
38
+ "import": "./dist/index.mjs",
39
+ "require": "./dist/index.cjs"
40
+ },
41
+ "./devtools": {
42
+ "types": "./dist/devtools.d.ts",
43
+ "import": "./dist/devtools.mjs",
44
+ "require": "./dist/devtools.cjs"
45
+ },
46
+ "./engine": {
47
+ "types": "./dist/engine.d.ts",
48
+ "import": "./dist/engine.mjs",
49
+ "require": "./dist/engine.cjs"
50
+ }
51
+ },
52
+ "files": [
53
+ "dist",
54
+ "CHANGELOG.md"
55
+ ],
56
+ "sideEffects": false,
57
+ "scripts": {
58
+ "build": "tsup",
59
+ "check": "pnpm typecheck && pnpm test",
60
+ "api:check": "api-extractor run --verbose -c api-extractor.index.json && api-extractor run --verbose -c api-extractor.devtools.json && api-extractor run --verbose -c api-extractor.engine.json",
61
+ "api:update": "api-extractor run --local --verbose -c api-extractor.index.json && api-extractor run --local --verbose -c api-extractor.devtools.json && api-extractor run --local --verbose -c api-extractor.engine.json",
62
+ "api:docs": "node ./scripts/generate-api-docs.mjs",
63
+ "check:guardrails": "node ./scripts/check-guardrails.mjs",
64
+ "prepublishOnly": "pnpm build",
65
+ "release": "if [ \"$npm_config_nobump\" = \"true\" ]; then npm publish --access public; else node ./scripts/calendar-version-bump.mjs --apply && npm publish --access public; fi",
66
+ "typecheck": "tsc --project tsconfig.json",
67
+ "test": "jest",
68
+ "release:next-version": "node ./scripts/calendar-version-bump.mjs --dry-run"
69
+ },
70
+ "dependencies": {
71
+ "clsx": "^2.1.1",
72
+ "tailwind-merge": "^2.6.0"
73
+ },
74
+ "peerDependencies": {
75
+ "react": "^19",
76
+ "react-dom": "^19"
77
+ },
78
+ "devDependencies": {
79
+ "@jest/globals": "^30.2.0",
80
+ "@microsoft/api-documenter": "^7.30.7",
81
+ "@microsoft/api-extractor": "^7.58.9",
82
+ "@testing-library/react": "^16.3.2",
83
+ "marked": "^18.0.5",
84
+ "@types/jest": "^30.0.0",
85
+ "@types/node": "^26.0.1",
86
+ "@types/react": "^19",
87
+ "@types/react-dom": "^19",
88
+ "jest": "^30.2.0",
89
+ "jest-environment-jsdom": "^30.4.1",
90
+ "react": "^19.2.7",
91
+ "react-dom": "^19.2.7",
92
+ "ts-jest": "^29.4.5",
93
+ "tsup": "^8.5.0",
94
+ "typescript": "^5.9.3"
95
+ }
96
+ }