-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.25 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 3.25 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
{
"name": "@samebase/sidebars",
"version": "0.1.1",
"description": "Unstyled responsive sidebar layout for React",
"keywords": [
"layout",
"pane",
"react",
"responsive",
"sidebar",
"sidebars"
],
"homepage": "https://github.com/samebase/sidebars#readme",
"bugs": {
"url": "https://github.com/samebase/sidebars/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/samebase/sidebars.git"
},
"files": [
"dist",
"src",
"README.md",
"LICENSE.md"
],
"type": "module",
"sideEffects": [
"./dist/structure.css",
"./src/structure.css"
],
"exports": {
"./PaneFrame": {
"samebase-source": "./src/PaneFrame.tsx",
"types": "./dist/PaneFrame.d.ts",
"default": "./dist/PaneFrame.js"
},
"./SidebarLayout": {
"samebase-source": "./src/SidebarLayout.tsx",
"types": "./dist/SidebarLayout.d.ts",
"default": "./dist/SidebarLayout.js"
},
"./SidebarLayoutGeometry": {
"samebase-source": "./src/SidebarLayoutGeometry.ts",
"types": "./dist/SidebarLayoutGeometry.d.ts",
"default": "./dist/SidebarLayoutGeometry.js"
},
"./SidebarLayoutPrehydration": {
"samebase-source": "./src/SidebarLayoutPrehydration.ts",
"types": "./dist/SidebarLayoutPrehydration.d.ts",
"default": "./dist/SidebarLayoutPrehydration.js"
},
"./SidebarLayoutState": {
"samebase-source": "./src/SidebarLayoutState.ts",
"types": "./dist/SidebarLayoutState.d.ts",
"default": "./dist/SidebarLayoutState.js"
},
"./SidebarLayoutTesting": {
"samebase-source": "./src/SidebarLayoutTesting.tsx",
"types": "./dist/SidebarLayoutTesting.d.ts",
"default": "./dist/SidebarLayoutTesting.js"
},
"./SidebarRuntime": {
"samebase-source": "./src/SidebarRuntime.ts",
"types": "./dist/SidebarRuntime.d.ts",
"default": "./dist/SidebarRuntime.js"
},
"./structure.css": {
"types": "./src/structure.css.d.ts",
"samebase-source": "./src/structure.css",
"default": "./dist/structure.css"
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "vp pack",
"check": "pnpm run format:check && pnpm run lint && pnpm run typecheck && pnpm run test && pnpm run test:package",
"format": "vp fmt .",
"format:check": "vp fmt . --check",
"lint": "vp lint --tsconfig tsconfig.json --report-unused-disable-directives src test scripts vite.config.ts",
"prepack": "pnpm run build",
"test": "vp test run test",
"test:package": "pnpm run build && node ./scripts/check-packed-consumer.ts",
"typecheck": "tsgo -p tsconfig.json --pretty false"
},
"dependencies": {
"@tanstack/react-store": "0.11.0"
},
"devDependencies": {
"@arethetypeswrong/core": "0.18.5",
"@types/node": "20.19.32",
"@types/react": "19.2.15",
"@types/react-dom": "19.2.3",
"@typescript/native-preview": "7.0.0-dev.20260413.1",
"jsdom": "29.0.1",
"publint": "0.3.24",
"react": "19.2.6",
"react-dom": "19.2.6",
"vite-plus": "0.3.0"
},
"peerDependencies": {
"react": ">=19.2.0 <20",
"react-dom": ">=19.2.0 <20"
},
"packageManager": "pnpm@11.18.0"
}