-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.4 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.4 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
{
"name": "react-headless-dock-layout",
"version": "0.5.1",
"description": "A lightweight, headless dock layout library for React.",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"scripts": {
"test": "vitest",
"dev": "vite",
"build": "tsup",
"type-check": "tsc --noEmit",
"release:patch": "pnpm build && pnpm version patch && pnpm publish",
"release:minor": "pnpm build && pnpm version minor && pnpm publish",
"release:major": "pnpm build && pnpm version major && pnpm publish"
},
"keywords": [
"react",
"headless",
"dock layout"
],
"files": [
"dist"
],
"license": "MIT",
"packageManager": "pnpm@10.27.0+sha512.72d699da16b1179c14ba9e64dc71c9a40988cbdc65c264cb0e489db7de917f20dcf4d64d8723625f2969ba52d4b7e2a1170682d9ac2a5dcaeaab732b7e16f04a",
"devDependencies": {
"@biomejs/biome": "2.3.10",
"@total-typescript/tsconfig": "^1.0.4",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@vitejs/plugin-react": "^5.1.2",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"vitest": "^4.0.14"
},
"peerDependencies": {
"react": ">=18.0.0"
}
}