|
1 | 1 | {
|
2 |
| - "name": "@aptre/flex-layout", |
3 |
| - "author": "Caplin Systems Ltd", |
4 |
| - "description": "A multi-tab docking layout manager", |
5 |
| - "version": "0.3.5", |
6 |
| - "license": "ISC", |
7 |
| - "repository": { |
8 |
| - "type": "git", |
9 |
| - "url": "git+https://github.com/aperturerobotics/flex-layout.git" |
| 2 | + "name": "@aptre/flex-layout", |
| 3 | + "author": "Caplin Systems Ltd", |
| 4 | + "description": "A multi-tab docking layout manager", |
| 5 | + "version": "0.3.5", |
| 6 | + "license": "ISC", |
| 7 | + "repository": { |
| 8 | + "type": "git", |
| 9 | + "url": "git+https://github.com/aperturerobotics/flex-layout.git" |
| 10 | + }, |
| 11 | + "keywords": [ |
| 12 | + "react", |
| 13 | + "layout", |
| 14 | + "dock", |
| 15 | + "popout", |
| 16 | + "tabs", |
| 17 | + "tabset", |
| 18 | + "splitter", |
| 19 | + "drag", |
| 20 | + "drop", |
| 21 | + "reactjs", |
| 22 | + "flexlayout", |
| 23 | + "flex layout", |
| 24 | + "layout manager", |
| 25 | + "drag and drop", |
| 26 | + "split view", |
| 27 | + "docking library", |
| 28 | + "docking layout" |
| 29 | + ], |
| 30 | + "type": "module", |
| 31 | + "types": "./dist/index.d.ts", |
| 32 | + "exports": { |
| 33 | + ".": { |
| 34 | + "types": "./dist/index.d.ts", |
| 35 | + "import": "./dist/index.mjs", |
| 36 | + "default": "./dist/index.mjs" |
10 | 37 | },
|
11 |
| - "keywords": [ |
12 |
| - "react", |
13 |
| - "layout", |
14 |
| - "dock", |
15 |
| - "popout", |
16 |
| - "tabs", |
17 |
| - "tabset", |
18 |
| - "splitter", |
19 |
| - "drag", |
20 |
| - "drop", |
21 |
| - "reactjs", |
22 |
| - "flexlayout", |
23 |
| - "flex layout", |
24 |
| - "layout manager", |
25 |
| - "drag and drop", |
26 |
| - "split view", |
27 |
| - "docking library", |
28 |
| - "docking layout" |
29 |
| - ], |
30 |
| - "type": "module", |
31 |
| - "types": "./dist/index.d.ts", |
32 |
| - "exports": { |
33 |
| - ".": { |
34 |
| - "types": "./dist/index.d.ts", |
35 |
| - "import": "./dist/index.mjs", |
36 |
| - "default": "./dist/index.mjs" |
37 |
| - }, |
38 |
| - "./style": "./style/", |
39 |
| - "./style/_base.scss": "./style/_base.scss", |
40 |
| - "./style/dark.css": "./style/dark.css", |
41 |
| - "./style/dark.css.map": "./style/dark.css.map", |
42 |
| - "./style/dark.scss": "./style/dark.scss", |
43 |
| - "./style/gray.css": "./style/gray.css", |
44 |
| - "./style/gray.css.map": "./style/gray.css.map", |
45 |
| - "./style/gray.scss": "./style/gray.scss", |
46 |
| - "./style/light.css": "./style/light.css", |
47 |
| - "./style/light.css.map": "./style/light.css.map", |
48 |
| - "./style/light.scss": "./style/light.scss", |
49 |
| - "./style/underline.css": "./style/underline.css", |
50 |
| - "./style/underline.css.map": "./style/underline.css.map", |
51 |
| - "./style/underline.scss": "./style/underline.scss" |
52 |
| - }, |
53 |
| - "files": [ |
54 |
| - "README.md", |
55 |
| - "LICENSE", |
56 |
| - "tsconfig.json", |
57 |
| - "style/", |
58 |
| - "typedoc/", |
59 |
| - "dist/" |
60 |
| - ], |
61 |
| - "scripts": { |
62 |
| - "build": "npm run build:style && npm run build:doc && npm run build:lib && npm run build:types", |
63 |
| - "build:min": "npm run build:style && npm run build:doc && npm run build:lib:min && npm run build:types", |
64 |
| - "build:lib": "rimraf ./dist && esbuild --bundle --external:react --external:react-dom --format=esm --target=es2022 --platform=browser --outfile=./dist/index.mjs ./src/index.ts", |
65 |
| - "build:lib:min": "npm run build:lib -- --minify", |
66 |
| - "build:doc": "typedoc --out typedoc --exclude \"**/examples/**/*.tsx\" --excludeInternal --disableSources --excludePrivate --excludeProtected --readme none ./src", |
67 |
| - "build:style": "sass style/underline.scss style/underline.css && sass style/gray.scss style/gray.css && sass style/light.scss style/light.css && sass style/dark.scss style/dark.css", |
68 |
| - "build:types": "tsc --emitDeclarationOnly --declaration --outDir dist/", |
69 |
| - "typecheck": "tsc --noEmit", |
70 |
| - "test": "tsc --project tsconfig.json --noEmit", |
71 |
| - "lint": "eslint src/*", |
72 |
| - "format": "prettier --write './style/*.scss' './{src,declarations}/**/(*.ts|*.tsx|*.html)' package.json", |
73 |
| - "release:version": "npm version patch -m \"release: v%s\" --no-git-tag-version", |
74 |
| - "release:commit": "git reset && git add package.json && git commit -s -m \"release: v$npm_package_version\" && git tag v$npm_package_version", |
75 |
| - "release:publish": "git push && git push --tags && npm run build && npm publish", |
76 |
| - "release": "npm run release:version && npm run release:commit" |
77 |
| - }, |
78 |
| - "peerDependencies": { |
79 |
| - "react": "^18.0.0 || ^19.0.0", |
80 |
| - "react-dom": "^18.0.0 || ^19.0.0" |
81 |
| - }, |
82 |
| - "dependencies": {}, |
83 |
| - "devDependencies": { |
84 |
| - "@eslint/eslintrc": "^3.2.0", |
85 |
| - "@eslint/js": "^9.16.0", |
86 |
| - "@types/node": "^22.10.1", |
87 |
| - "@types/prismjs": "^1.26.0", |
88 |
| - "@types/react": "^19.0.0", |
89 |
| - "@types/react-dom": "^19.0.0", |
90 |
| - "@typescript-eslint/eslint-plugin": "^8.17.0", |
91 |
| - "@typescript-eslint/parser": "^8.17.0", |
92 |
| - "esbuild": "^0.24.0", |
93 |
| - "eslint": "^9.16.0", |
94 |
| - "eslint-plugin-react": "^7.37.2", |
95 |
| - "globals": "^15.13.0", |
96 |
| - "prettier": "^3.0.0", |
97 |
| - "prismjs": "^1.28.0", |
98 |
| - "react": "^19.0.0", |
99 |
| - "react-dom": "^19.0.0", |
100 |
| - "rimraf": "^6.0.1", |
101 |
| - "sass": "^1.50.0", |
102 |
| - "typedoc": "^0.27.2", |
103 |
| - "typescript": "^5.0.0" |
104 |
| - } |
| 38 | + "./style": "./style/", |
| 39 | + "./style/_base.scss": "./style/_base.scss", |
| 40 | + "./style/dark.css": "./style/dark.css", |
| 41 | + "./style/dark.css.map": "./style/dark.css.map", |
| 42 | + "./style/dark.scss": "./style/dark.scss", |
| 43 | + "./style/gray.css": "./style/gray.css", |
| 44 | + "./style/gray.css.map": "./style/gray.css.map", |
| 45 | + "./style/gray.scss": "./style/gray.scss", |
| 46 | + "./style/light.css": "./style/light.css", |
| 47 | + "./style/light.css.map": "./style/light.css.map", |
| 48 | + "./style/light.scss": "./style/light.scss", |
| 49 | + "./style/underline.css": "./style/underline.css", |
| 50 | + "./style/underline.css.map": "./style/underline.css.map", |
| 51 | + "./style/underline.scss": "./style/underline.scss" |
| 52 | + }, |
| 53 | + "files": [ |
| 54 | + "README.md", |
| 55 | + "LICENSE", |
| 56 | + "tsconfig.json", |
| 57 | + "style/", |
| 58 | + "typedoc/", |
| 59 | + "dist/" |
| 60 | + ], |
| 61 | + "scripts": { |
| 62 | + "build": "npm run build:style && npm run build:doc && npm run build:lib && npm run build:types", |
| 63 | + "build:min": "npm run build:style && npm run build:doc && npm run build:lib:min && npm run build:types", |
| 64 | + "build:lib": "rimraf ./dist && esbuild --bundle --external:react --external:react-dom --format=esm --target=es2022 --platform=browser --outfile=./dist/index.mjs ./src/index.ts", |
| 65 | + "build:lib:min": "npm run build:lib -- --minify", |
| 66 | + "build:doc": "typedoc --out typedoc --exclude \"**/examples/**/*.tsx\" --excludeInternal --disableSources --excludePrivate --excludeProtected --readme none ./src", |
| 67 | + "build:style": "sass style/underline.scss style/underline.css && sass style/gray.scss style/gray.css && sass style/light.scss style/light.css && sass style/dark.scss style/dark.css", |
| 68 | + "build:types": "tsc --emitDeclarationOnly --declaration --outDir dist/", |
| 69 | + "typecheck": "tsc --project tsconfig.json --noEmit", |
| 70 | + "test": "npm run typecheck", |
| 71 | + "test:browser": "vitest --workspace=vitest.workspace.ts", |
| 72 | + "lint": "eslint src/*", |
| 73 | + "format": "prettier --write './style/*.scss' './{src,declarations}/**/(*.ts|*.tsx|*.html)' package.json", |
| 74 | + "release:version": "npm version patch -m \"release: v%s\" --no-git-tag-version", |
| 75 | + "release:commit": "git reset && git add package.json && git commit -s -m \"release: v$npm_package_version\" && git tag v$npm_package_version", |
| 76 | + "release:publish": "git push && git push --tags && npm run build && npm publish", |
| 77 | + "release": "npm run release:version && npm run release:commit" |
| 78 | + }, |
| 79 | + "peerDependencies": { |
| 80 | + "react": "^18.0.0 || ^19.0.0", |
| 81 | + "react-dom": "^18.0.0 || ^19.0.0" |
| 82 | + }, |
| 83 | + "dependencies": {}, |
| 84 | + "devDependencies": { |
| 85 | + "@eslint/eslintrc": "^3.2.0", |
| 86 | + "@eslint/js": "^9.16.0", |
| 87 | + "@testing-library/dom": "^10.4.0", |
| 88 | + "@testing-library/react": "^16.2.0", |
| 89 | + "@types/node": "^22.10.1", |
| 90 | + "@types/prismjs": "^1.26.0", |
| 91 | + "@types/react": "^19.0.0", |
| 92 | + "@types/react-dom": "^19.0.0", |
| 93 | + "@typescript-eslint/eslint-plugin": "^8.17.0", |
| 94 | + "@typescript-eslint/parser": "^8.17.0", |
| 95 | + "@vitejs/plugin-react": "^4.3.4", |
| 96 | + "@vitest/browser": "^3.1.1", |
| 97 | + "esbuild": "^0.24.0", |
| 98 | + "eslint": "^9.16.0", |
| 99 | + "eslint-plugin-react": "^7.37.2", |
| 100 | + "globals": "^15.13.0", |
| 101 | + "jsdom": "^26.0.0", |
| 102 | + "prettier": "^3.0.0", |
| 103 | + "prismjs": "^1.28.0", |
| 104 | + "react": "^19.0.0", |
| 105 | + "react-dom": "^19.0.0", |
| 106 | + "rimraf": "^6.0.1", |
| 107 | + "sass": "^1.50.0", |
| 108 | + "typedoc": "^0.27.2", |
| 109 | + "typescript": "^5.0.0", |
| 110 | + "vitest": "^3.1.1", |
| 111 | + "vitest-browser-react": "^0.1.1" |
| 112 | + } |
105 | 113 | }
|
0 commit comments