@process.co/ui 0.0.1
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/README.md +414 -0
- package/dist/index.cjs +1 -0
- package/dist/index.d.cts +47 -0
- package/dist/index.d.ts +47 -0
- package/dist/index.js +1 -0
- package/dist/ui.css +2042 -0
- package/package.json +225 -0
package/package.json
ADDED
|
@@ -0,0 +1,225 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@process.co/ui",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"sideEffects": [
|
|
6
|
+
"**/*.css"
|
|
7
|
+
],
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"main": "./dist/index.cjs",
|
|
12
|
+
"module": "./dist/index.js",
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"exports": {
|
|
15
|
+
".": {
|
|
16
|
+
"import": {
|
|
17
|
+
"types": "./dist/index.d.ts",
|
|
18
|
+
"default": "./dist/index.js"
|
|
19
|
+
},
|
|
20
|
+
"require": {
|
|
21
|
+
"types": "./dist/index.d.cts",
|
|
22
|
+
"default": "./dist/index.cjs"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"./styles": "./dist/ui.css",
|
|
26
|
+
"./package.json": "./package.json"
|
|
27
|
+
},
|
|
28
|
+
"storybook": {
|
|
29
|
+
"url": "https://main--674d30e40a127b13419e46ba.chromatic.com"
|
|
30
|
+
},
|
|
31
|
+
"repository": {
|
|
32
|
+
"type": "git",
|
|
33
|
+
"url": "git+https://github.com/process-co/ui.git"
|
|
34
|
+
},
|
|
35
|
+
"publishConfig": {
|
|
36
|
+
"access": "public",
|
|
37
|
+
"registry": "https://registry.npmjs.org",
|
|
38
|
+
"scope": "@process.co"
|
|
39
|
+
},
|
|
40
|
+
"keywords": [
|
|
41
|
+
"process",
|
|
42
|
+
"ui",
|
|
43
|
+
"components",
|
|
44
|
+
"react",
|
|
45
|
+
"tailwind",
|
|
46
|
+
"design-system"
|
|
47
|
+
],
|
|
48
|
+
"author": {
|
|
49
|
+
"name": "Process.co Team",
|
|
50
|
+
"email": "developers@process.co"
|
|
51
|
+
},
|
|
52
|
+
"license": "MIT",
|
|
53
|
+
"scripts": {
|
|
54
|
+
"build": "tsup ./src/index.tsx --dts --format cjs,esm --out-dir dist --clean --minify && pnpm generate:css",
|
|
55
|
+
"build-old": "pnpm generate:css && tsc && tsc-alias -p ./tsconfig.json",
|
|
56
|
+
"simplebuild": "tsc && tsc-alias -p ./tsconfig.json",
|
|
57
|
+
"lint": "eslint",
|
|
58
|
+
"dev": "tsc -watch & tsc-alias -w & pnpm generate:css --watch & storybook dev -p 6006",
|
|
59
|
+
"type-check": "tsc --noEmit",
|
|
60
|
+
"generate:css": "pnpm tailwindcss -i ./src/styles/globals.css -o ./dist/ui.css",
|
|
61
|
+
"generate:component": "turbo gen react-component",
|
|
62
|
+
"storybook": "storybook dev -p 6006",
|
|
63
|
+
"update": "pnpm update \"@awesome.me/kit-92f329dd9a@latest\"",
|
|
64
|
+
"build-storybook": "storybook build",
|
|
65
|
+
"chromatic": "pnpx chromatic",
|
|
66
|
+
"storybook:dev": "storybook dev -p 6006"
|
|
67
|
+
},
|
|
68
|
+
"peerDependencies": {
|
|
69
|
+
"react": "^19.0.0",
|
|
70
|
+
"react-dom": "^19.0.0"
|
|
71
|
+
},
|
|
72
|
+
"devDependencies": {
|
|
73
|
+
"@apollo/client": "^3.13.1",
|
|
74
|
+
"@chromatic-com/storybook": "^3.2.5",
|
|
75
|
+
"@contentful/rich-text-react-renderer": "^16.0.1",
|
|
76
|
+
"@eslint/compat": "^1.2.7",
|
|
77
|
+
"@material-tailwind/react": "3.0.0-beta.24",
|
|
78
|
+
"@playwright/test": "^1.50.1",
|
|
79
|
+
"@repo/config-eslint": "workspace:*",
|
|
80
|
+
"@repo/config-tailwind": "workspace:*",
|
|
81
|
+
"@repo/config-typescript": "workspace:*",
|
|
82
|
+
"@rollup/plugin-alias": "^5.1.1",
|
|
83
|
+
"@storybook/addon-actions": "^8.6.2",
|
|
84
|
+
"@storybook/addon-essentials": "^8.6.2",
|
|
85
|
+
"@storybook/addon-interactions": "^8.6.2",
|
|
86
|
+
"@storybook/addon-mdx-gfm": "^8.6.2",
|
|
87
|
+
"@storybook/addon-onboarding": "^8.6.2",
|
|
88
|
+
"@storybook/addon-themes": "^8.6.2",
|
|
89
|
+
"@storybook/blocks": "^8.6.2",
|
|
90
|
+
"@storybook/experimental-nextjs-vite": "^8.6.2",
|
|
91
|
+
"@storybook/manager-api": "^8.6.2",
|
|
92
|
+
"@storybook/nextjs": "^8.6.2",
|
|
93
|
+
"@storybook/react": "^8.6.2",
|
|
94
|
+
"@storybook/react-vite": "^8.6.2",
|
|
95
|
+
"@storybook/test": "^8.6.2",
|
|
96
|
+
"@storybook/theming": "^8.6.2",
|
|
97
|
+
"@svgr/webpack": "^8.1.0",
|
|
98
|
+
"@swc/core": "^1.13.5",
|
|
99
|
+
"@tailwindcss/cli": "^4.0.9",
|
|
100
|
+
"@types/is-hotkey": "^0.1.10",
|
|
101
|
+
"@types/is-url": "^1.2.32",
|
|
102
|
+
"@types/prop-types": "^15.7.14",
|
|
103
|
+
"@types/react": "^18.3.18",
|
|
104
|
+
"@types/zxcvbn": "^4.4.5",
|
|
105
|
+
"@vitejs/plugin-react": "^4.3.4",
|
|
106
|
+
"@vitest/spy": "^3.1.1",
|
|
107
|
+
"chromatic": "^13.3.0",
|
|
108
|
+
"concurrently": "^9.1.2",
|
|
109
|
+
"eslint-plugin-storybook": "^0.11.3",
|
|
110
|
+
"mock-apollo-client": "^1.3.1",
|
|
111
|
+
"msw": "^2.7.3",
|
|
112
|
+
"msw-storybook-addon": "^2.0.4",
|
|
113
|
+
"next": "15.3.0-canary.10",
|
|
114
|
+
"preset": "link:@storybook/react-vite/preset",
|
|
115
|
+
"react": "19.0.0",
|
|
116
|
+
"react-dom": "^19.0.0",
|
|
117
|
+
"storybook": "8.6.12",
|
|
118
|
+
"storybook-addon-apollo-client": "^8.1.2",
|
|
119
|
+
"storybook-addon-code-editor": "^3.2.0",
|
|
120
|
+
"storybook-addon-tag-badges": "^1.4.0",
|
|
121
|
+
"stylelint-config-standard": "^36.0.1",
|
|
122
|
+
"ts-loader": "^9.5.2",
|
|
123
|
+
"tsc-alias": "^1.8.11",
|
|
124
|
+
"tsup": "^8.5.0",
|
|
125
|
+
"typescript": "^5.7.3",
|
|
126
|
+
"vite-dts": "^1.0.4",
|
|
127
|
+
"webpack": "^5.98.0",
|
|
128
|
+
"webpack-cli": "^6.0.1"
|
|
129
|
+
},
|
|
130
|
+
"dependencies": {
|
|
131
|
+
"@awesome.me/kit-92f329dd9a": "^1.0.5",
|
|
132
|
+
"@emotion/cache": "^11.14.0",
|
|
133
|
+
"@emotion/css": "^11.13.5",
|
|
134
|
+
"@emotion/styled": "^11.14.0",
|
|
135
|
+
"@fortawesome/pro-regular-svg-icons": "^6.7.2",
|
|
136
|
+
"@fortawesome/react-fontawesome": "^0.2.2",
|
|
137
|
+
"@heroicons/react": "^2.2.0",
|
|
138
|
+
"@hookform/resolvers": "^4.1.2",
|
|
139
|
+
"@lottiefiles/dotlottie-react": "^0.13.0",
|
|
140
|
+
"@lottiefiles/react-lottie-player": "^3.6.0",
|
|
141
|
+
"@mantine/core": "^7.17.0",
|
|
142
|
+
"@monaco-editor/react": "^4.7.0",
|
|
143
|
+
"@mui/material": "7.0.0-beta.2",
|
|
144
|
+
"@mui/material-nextjs": "7.0.0-beta.2",
|
|
145
|
+
"@radix-ui/react-accordion": "^1.2.3",
|
|
146
|
+
"@radix-ui/react-alert-dialog": "^1.1.6",
|
|
147
|
+
"@radix-ui/react-avatar": "^1.1.3",
|
|
148
|
+
"@radix-ui/react-checkbox": "^1.1.4",
|
|
149
|
+
"@radix-ui/react-collapsible": "^1.1.3",
|
|
150
|
+
"@radix-ui/react-context-menu": "^2.2.6",
|
|
151
|
+
"@radix-ui/react-dialog": "^1.1.6",
|
|
152
|
+
"@radix-ui/react-dropdown-menu": "^2.1.6",
|
|
153
|
+
"@radix-ui/react-hover-card": "^1.1.6",
|
|
154
|
+
"@radix-ui/react-label": "^2.1.2",
|
|
155
|
+
"@radix-ui/react-menubar": "^1.1.6",
|
|
156
|
+
"@radix-ui/react-navigation-menu": "^1.2.5",
|
|
157
|
+
"@radix-ui/react-popover": "^1.1.6",
|
|
158
|
+
"@radix-ui/react-popper": "1.2.7",
|
|
159
|
+
"@radix-ui/react-progress": "^1.1.2",
|
|
160
|
+
"@radix-ui/react-radio-group": "^1.2.3",
|
|
161
|
+
"@radix-ui/react-scroll-area": "^1.2.3",
|
|
162
|
+
"@radix-ui/react-select": "^2.1.6",
|
|
163
|
+
"@radix-ui/react-separator": "^1.1.2",
|
|
164
|
+
"@radix-ui/react-slider": "^1.2.3",
|
|
165
|
+
"@radix-ui/react-slot": "^1.1.2",
|
|
166
|
+
"@radix-ui/react-switch": "^1.1.3",
|
|
167
|
+
"@radix-ui/react-tabs": "^1.1.3",
|
|
168
|
+
"@radix-ui/react-toggle": "^1.1.2",
|
|
169
|
+
"@radix-ui/react-toggle-group": "^1.1.2",
|
|
170
|
+
"@radix-ui/react-tooltip": "^1.1.8",
|
|
171
|
+
"@storybook/addon-links": "^8.6.2",
|
|
172
|
+
"@storybook/addon-styling-webpack": "^1.0.1",
|
|
173
|
+
"@tailwindcss/postcss": "^4.0.9",
|
|
174
|
+
"@tailwindcss/typography": "^0.5.16",
|
|
175
|
+
"@tailwindcss/vite": "^4.0.9",
|
|
176
|
+
"@tanstack/react-query": "^5.66.9",
|
|
177
|
+
"@types/react-syntax-highlighter": "^15.5.13",
|
|
178
|
+
"class-variance-authority": "^0.7.1",
|
|
179
|
+
"clsx": "^2.1.1",
|
|
180
|
+
"cmdk": "1.0.0",
|
|
181
|
+
"date-fns": "^4.1.0",
|
|
182
|
+
"embla-carousel-react": "^8.5.2",
|
|
183
|
+
"eslint": "^9.21.0",
|
|
184
|
+
"framer-motion": "^12.4.7",
|
|
185
|
+
"i18next": "^24.2.2",
|
|
186
|
+
"input-otp": "^1.4.2",
|
|
187
|
+
"is-hotkey": "^0.2.0",
|
|
188
|
+
"is-url": "^1.2.4",
|
|
189
|
+
"lottie-web": "^5.12.2",
|
|
190
|
+
"lucide-react": "^0.476.0",
|
|
191
|
+
"next-themes": "^0.4.4",
|
|
192
|
+
"oidc-client-ts": "^3.1.0",
|
|
193
|
+
"postcss": "^8.5.3",
|
|
194
|
+
"postcss-import": "^16.1.0",
|
|
195
|
+
"prop-types": "^15.8.1",
|
|
196
|
+
"react-aria-components": "^1.7.1",
|
|
197
|
+
"react-day-picker": "8.10.1",
|
|
198
|
+
"react-hook-form": "^7.54.2",
|
|
199
|
+
"react-i18next": "^15.4.1",
|
|
200
|
+
"react-icons": "^5.5.0",
|
|
201
|
+
"react-oidc-context": "^3.2.0",
|
|
202
|
+
"react-resizable-panels": "^2.1.7",
|
|
203
|
+
"react-syntax-highlighter": "^15.6.1",
|
|
204
|
+
"recharts": "^2.15.1",
|
|
205
|
+
"rive-react": "^4.23.4",
|
|
206
|
+
"slate": "^0.112.0",
|
|
207
|
+
"slate-history": "^0.110.3",
|
|
208
|
+
"slate-react": "^0.112.1",
|
|
209
|
+
"sonner": "^2.0.1",
|
|
210
|
+
"storybook-addon-mock": "^5.0.0",
|
|
211
|
+
"styled-jsx": "^5.1.6",
|
|
212
|
+
"superjson": "1.13.3",
|
|
213
|
+
"tailwind-merge": "^3.0.2",
|
|
214
|
+
"tailwindcss": "^4.1.3",
|
|
215
|
+
"tailwindcss-animate": "^1.0.7",
|
|
216
|
+
"tailwindcss-animated": "^2.0.0",
|
|
217
|
+
"ts-morph": "^22.0.0",
|
|
218
|
+
"use-resize-observer": "^9.1.0",
|
|
219
|
+
"vaul": "^1.1.2",
|
|
220
|
+
"zod": "^3.24.2",
|
|
221
|
+
"zustand": "^5.0.3",
|
|
222
|
+
"zxcvbn": "^4.4.2"
|
|
223
|
+
},
|
|
224
|
+
"registry": "https://registry.npmjs.org"
|
|
225
|
+
}
|