@mikenotthepope/substrateui 0.1.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,159 @@
1
+ {
2
+ "name": "@mikenotthepope/substrateui",
3
+ "version": "0.1.0",
4
+ "description": "A neobrutalist React component library with bold borders, hard shadows, and high contrast design.",
5
+ "license": "MIT",
6
+ "author": "mikenotthepope",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/MikeNotThePope/substrateui.git"
10
+ },
11
+ "homepage": "https://www.substrateui.dev",
12
+ "bugs": {
13
+ "url": "https://github.com/MikeNotThePope/substrateui/issues"
14
+ },
15
+ "keywords": [
16
+ "react",
17
+ "components",
18
+ "ui",
19
+ "neobrutalism",
20
+ "design-system",
21
+ "tailwindcss",
22
+ "radix-ui"
23
+ ],
24
+ "publishConfig": {
25
+ "access": "public"
26
+ },
27
+ "main": "./dist/index.js",
28
+ "module": "./dist/index.mjs",
29
+ "types": "./dist/index.d.ts",
30
+ "exports": {
31
+ ".": {
32
+ "import": {
33
+ "types": "./dist/index.d.mts",
34
+ "default": "./dist/index.mjs"
35
+ },
36
+ "require": {
37
+ "types": "./dist/index.d.ts",
38
+ "default": "./dist/index.js"
39
+ }
40
+ },
41
+ "./styles": "./base/substrate.css"
42
+ },
43
+ "files": [
44
+ "dist",
45
+ "base"
46
+ ],
47
+ "sideEffects": [
48
+ "**/*.css"
49
+ ],
50
+ "scripts": {
51
+ "dev": "next dev",
52
+ "build": "tsup",
53
+ "build:demo": "next build",
54
+ "start": "next start",
55
+ "lint": "eslint",
56
+ "prepare": "tsup && sh scripts/check-hooks.sh",
57
+ "setup:hooks": "git config core.hooksPath .githooks",
58
+ "test": "vitest run",
59
+ "test:coverage": "vitest run --coverage",
60
+ "test:watch": "vitest",
61
+ "changeset": "changeset",
62
+ "version": "changeset version",
63
+ "storybook": "storybook dev -p 6006",
64
+ "build-storybook": "storybook build",
65
+ "test:visual": "playwright test",
66
+ "test:visual:update": "playwright test --update-snapshots",
67
+ "prepublishOnly": "tsup",
68
+ "release": "changeset publish"
69
+ },
70
+ "dependencies": {
71
+ "@devnomic/marquee": "^1.0.3",
72
+ "@hookform/resolvers": "^5.2.2",
73
+ "@radix-ui/react-accordion": "^1.2.12",
74
+ "@radix-ui/react-alert-dialog": "^1.1.15",
75
+ "@radix-ui/react-avatar": "^1.1.11",
76
+ "@radix-ui/react-checkbox": "^1.3.3",
77
+ "@radix-ui/react-collapsible": "^1.1.12",
78
+ "@radix-ui/react-context-menu": "^2.2.16",
79
+ "@radix-ui/react-dialog": "^1.1.15",
80
+ "@radix-ui/react-dropdown-menu": "^2.1.16",
81
+ "@radix-ui/react-hover-card": "^1.1.15",
82
+ "@radix-ui/react-label": "^2.1.8",
83
+ "@radix-ui/react-menubar": "^1.1.16",
84
+ "@radix-ui/react-navigation-menu": "^1.2.14",
85
+ "@radix-ui/react-popover": "^1.1.15",
86
+ "@radix-ui/react-progress": "^1.1.8",
87
+ "@radix-ui/react-radio-group": "^1.3.8",
88
+ "@radix-ui/react-scroll-area": "^1.2.10",
89
+ "@radix-ui/react-select": "^2.2.6",
90
+ "@radix-ui/react-slider": "^1.3.6",
91
+ "@radix-ui/react-slot": "^1.2.4",
92
+ "@radix-ui/react-switch": "^1.2.6",
93
+ "@radix-ui/react-tabs": "^1.1.13",
94
+ "@radix-ui/react-tooltip": "^1.2.8",
95
+ "@radix-ui/react-visually-hidden": "^1.2.4",
96
+ "@tanstack/react-table": "^8.21.3",
97
+ "@vercel/analytics": "^2.0.1",
98
+ "class-variance-authority": "^0.7.1",
99
+ "clsx": "^2.1.1",
100
+ "cmdk": "^1.1.1",
101
+ "embla-carousel-react": "^8.6.0",
102
+ "input-otp": "^1.4.2",
103
+ "lucide-react": "^0.577.0",
104
+ "react-day-picker": "^9.14.0",
105
+ "react-hook-form": "^7.72.0",
106
+ "react-resizable-panels": "^4.7.6",
107
+ "recharts": "^3.8.1",
108
+ "sonner": "^2.0.7",
109
+ "tailwind-merge": "^3.5.0",
110
+ "tw-animate-css": "^1.4.0",
111
+ "vaul": "^1.1.2",
112
+ "zod": "^4.3.6"
113
+ },
114
+ "peerDependencies": {
115
+ "react": "^19",
116
+ "react-dom": "^19"
117
+ },
118
+ "devDependencies": {
119
+ "@changesets/cli": "^2.30.0",
120
+ "@chromatic-com/storybook": "^5.1.1",
121
+ "@playwright/test": "^1.58.2",
122
+ "@storybook/addon-a11y": "^10.3.3",
123
+ "@storybook/addon-docs": "^10.3.3",
124
+ "@storybook/addon-onboarding": "^10.3.3",
125
+ "@storybook/addon-themes": "^10.3.3",
126
+ "@storybook/addon-vitest": "^10.3.3",
127
+ "@storybook/react-vite": "^10.3.3",
128
+ "@tailwindcss/postcss": "^4",
129
+ "@testing-library/jest-dom": "^6.9.1",
130
+ "@testing-library/react": "^16.3.2",
131
+ "@testing-library/user-event": "^14.6.1",
132
+ "@types/node": "^20",
133
+ "@types/react": "^19",
134
+ "@types/react-dom": "^19",
135
+ "@vitejs/plugin-react": "^4.7.0",
136
+ "@vitest/browser-playwright": "^4.1.2",
137
+ "@vitest/coverage-v8": "^4.1.2",
138
+ "eslint": "^9",
139
+ "eslint-config-next": "16.2.1",
140
+ "eslint-plugin-storybook": "^10.3.3",
141
+ "jsdom": "^29.0.1",
142
+ "next": "16.2.1",
143
+ "playwright": "^1.58.2",
144
+ "storybook": "^10.3.3",
145
+ "tailwindcss": "^4",
146
+ "tsup": "^8.5.1",
147
+ "typescript": "^5",
148
+ "vitest": "^4.1.2",
149
+ "vitest-axe": "^0.1.0"
150
+ },
151
+ "ignoreScripts": [
152
+ "sharp",
153
+ "unrs-resolver"
154
+ ],
155
+ "trustedDependencies": [
156
+ "sharp",
157
+ "unrs-resolver"
158
+ ]
159
+ }