slashh-ui 1.3.2
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 +36 -0
- package/dist/__registry__/index.d.ts +1 -0
- package/dist/__registry__/index.js +492 -0
- package/dist/app/(auth)/layout.d.ts +5 -0
- package/dist/app/(auth)/layout.js +8 -0
- package/dist/app/(auth)/login/page.d.ts +1 -0
- package/dist/app/(auth)/login/page.js +45 -0
- package/dist/app/(protected)/component/[id]/page.d.ts +5 -0
- package/dist/app/(protected)/component/[id]/page.js +13 -0
- package/dist/app/(protected)/component/page.d.ts +2 -0
- package/dist/app/(protected)/component/page.js +26 -0
- package/dist/app/(protected)/docs/page.d.ts +2 -0
- package/dist/app/(protected)/docs/page.js +43 -0
- package/dist/app/account/page.d.ts +1 -0
- package/dist/app/account/page.js +38 -0
- package/dist/app/api/me/route.d.ts +8 -0
- package/dist/app/api/me/route.js +20 -0
- package/dist/app/layout.d.ts +6 -0
- package/dist/app/layout.js +21 -0
- package/dist/app/page.d.ts +2 -0
- package/dist/app/page.js +11 -0
- package/dist/app/pricing/page.d.ts +2 -0
- package/dist/app/pricing/page.js +5 -0
- package/dist/bin/index.d.ts +2 -0
- package/dist/bin/index.js +27 -0
- package/dist/components/smooth-scroll.d.ts +4 -0
- package/dist/components/smooth-scroll.js +21 -0
- package/dist/components/toast.d.ts +11 -0
- package/dist/components/toast.js +39 -0
- package/dist/components/ui/IndustryProof.d.ts +1 -0
- package/dist/components/ui/IndustryProof.js +55 -0
- package/dist/components/ui/ShowcaseContainer.d.ts +8 -0
- package/dist/components/ui/ShowcaseContainer.js +139 -0
- package/dist/components/ui/dot-cursor.d.ts +2 -0
- package/dist/components/ui/dot-cursor.js +70 -0
- package/dist/components/ui/featuredComponents.d.ts +2 -0
- package/dist/components/ui/featuredComponents.js +14 -0
- package/dist/components/ui/footer.d.ts +2 -0
- package/dist/components/ui/footer.js +5 -0
- package/dist/components/ui/hero.d.ts +3 -0
- package/dist/components/ui/hero.js +21 -0
- package/dist/components/ui/navbar.d.ts +3 -0
- package/dist/components/ui/navbar.js +102 -0
- package/dist/components/ui/pricing.d.ts +2 -0
- package/dist/components/ui/pricing.js +26 -0
- package/dist/hooks/use-component-search.d.ts +5 -0
- package/dist/hooks/use-component-search.js +37 -0
- package/dist/lib/actions/auth.action.d.ts +8 -0
- package/dist/lib/actions/auth.action.js +66 -0
- package/dist/lib/auth.d.ts +1 -0
- package/dist/lib/auth.js +15 -0
- package/dist/lib/email.d.ts +1 -0
- package/dist/lib/email.js +42 -0
- package/dist/lib/prisma.d.ts +2 -0
- package/dist/lib/prisma.js +8 -0
- package/dist/lib/registry.d.ts +1 -0
- package/dist/lib/registry.js +16 -0
- package/dist/lib/utils.d.ts +2 -0
- package/dist/lib/utils.js +5 -0
- package/dist/middleware/middleware.d.ts +5 -0
- package/dist/middleware/middleware.js +19 -0
- package/dist/next.config.d.ts +3 -0
- package/dist/next.config.js +4 -0
- package/dist/prisma.config.d.ts +3 -0
- package/dist/prisma.config.js +13 -0
- package/dist/registry/details/buttons/neubrutal-button-details.d.ts +2 -0
- package/dist/registry/details/buttons/neubrutal-button-details.js +25 -0
- package/dist/registry/details/cursor/dot-cursor-details.d.ts +2 -0
- package/dist/registry/details/cursor/dot-cursor-details.js +5 -0
- package/dist/registry/details/navbar/floating-navbar-details.d.ts +2 -0
- package/dist/registry/details/navbar/floating-navbar-details.js +5 -0
- package/dist/registry/details/scrollbars/minimal-scrollbar-details.d.ts +0 -0
- package/dist/registry/details/scrollbars/minimal-scrollbar-details.js +1 -0
- package/dist/registry/index.d.ts +7 -0
- package/dist/registry/index.js +31 -0
- package/dist/registry/ui/buttons/neubrutal-button.d.ts +6 -0
- package/dist/registry/ui/buttons/neubrutal-button.js +18 -0
- package/dist/registry/ui/cursors/dot-cursor.d.ts +2 -0
- package/dist/registry/ui/cursors/dot-cursor.js +70 -0
- package/dist/registry/ui/navbars/floating-navbar.d.ts +2 -0
- package/dist/registry/ui/navbars/floating-navbar.js +35 -0
- package/dist/registry/ui/scrollbars/minimal-scrollbar.d.ts +2 -0
- package/dist/registry/ui/scrollbars/minimal-scrollbar.js +171 -0
- package/dist/scripts/build-registry.d.ts +1 -0
- package/dist/scripts/build-registry.js +47 -0
- package/dist/src/commands/add.d.ts +1 -0
- package/dist/src/commands/add.js +64 -0
- package/dist/src/commands/init.d.ts +1 -0
- package/dist/src/commands/init.js +88 -0
- package/dist/src/commands/list.d.ts +1 -0
- package/dist/src/commands/list.js +37 -0
- package/dist/src/index.d.ts +2 -0
- package/dist/src/index.js +28 -0
- package/dist/src/utils/get-pkg-manager.d.ts +1 -0
- package/dist/src/utils/get-pkg-manager.js +10 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +71 -0
package/package.json
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "slashh-ui",
|
|
3
|
+
"version": "1.3.2",
|
|
4
|
+
"main": "./dist/index.js",
|
|
5
|
+
"types": "./dist/index.d.ts",
|
|
6
|
+
"private": false,
|
|
7
|
+
"publishConfig": {
|
|
8
|
+
"access": "public"
|
|
9
|
+
},
|
|
10
|
+
"bin": {
|
|
11
|
+
"slashh-ui": "./dist/bin/index.js"
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"dist"
|
|
15
|
+
],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"dev": "next dev",
|
|
18
|
+
"build": "tsc",
|
|
19
|
+
"start": "next start",
|
|
20
|
+
"lint": "eslint",
|
|
21
|
+
"build:registry": "tsx scripts/build-registry.ts"
|
|
22
|
+
},
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"@prisma/client": "^6.19.2",
|
|
25
|
+
"@tailwindcss/typography": "^0.5.19",
|
|
26
|
+
"axios": "^1.13.6",
|
|
27
|
+
"bcrypt": "^6.0.0",
|
|
28
|
+
"bcryptjs": "^3.0.3",
|
|
29
|
+
"chalk": "^5.3.0",
|
|
30
|
+
"class-variance-authority": "^0.7.1",
|
|
31
|
+
"clsx": "^2.1.1",
|
|
32
|
+
"commander": "^12.1.0",
|
|
33
|
+
"fs-extra": "^11.2.0",
|
|
34
|
+
"hamburger-react": "^2.5.2",
|
|
35
|
+
"jsonwebtoken": "^9.0.3",
|
|
36
|
+
"lenis": "^1.3.18",
|
|
37
|
+
"lucide-react": "^0.563.0",
|
|
38
|
+
"motion": "^12.31.0",
|
|
39
|
+
"next": "16.1.6",
|
|
40
|
+
"nodemailer": "^8.0.1",
|
|
41
|
+
"ora": "^8.0.1",
|
|
42
|
+
"prisma": "^6.19.2",
|
|
43
|
+
"prompts": "^2.4.2",
|
|
44
|
+
"react": "19.2.3",
|
|
45
|
+
"react-dom": "19.2.3",
|
|
46
|
+
"react-hot-toast": "^2.6.0",
|
|
47
|
+
"react-markdown": "^10.1.0",
|
|
48
|
+
"react-syntax-highlighter": "^16.1.0",
|
|
49
|
+
"remark-gfm": "^4.0.1",
|
|
50
|
+
"resend": "^6.9.3",
|
|
51
|
+
"tailwind-merge": "^3.4.0"
|
|
52
|
+
},
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"@tailwindcss/postcss": "^4",
|
|
55
|
+
"@types/bcrypt": "^6.0.0",
|
|
56
|
+
"@types/bcryptjs": "^2.4.6",
|
|
57
|
+
"@types/fs-extra": "^11.0.4",
|
|
58
|
+
"@types/jsonwebtoken": "^9.0.10",
|
|
59
|
+
"@types/node": "^20.19.37",
|
|
60
|
+
"@types/nodemailer": "^7.0.11",
|
|
61
|
+
"@types/prompts": "^2.4.9",
|
|
62
|
+
"@types/react": "^19",
|
|
63
|
+
"@types/react-dom": "^19",
|
|
64
|
+
"@types/react-syntax-highlighter": "^15.5.13",
|
|
65
|
+
"eslint": "^9",
|
|
66
|
+
"eslint-config-next": "16.1.6",
|
|
67
|
+
"tailwindcss": "^4",
|
|
68
|
+
"tsx": "^4.21.0",
|
|
69
|
+
"typescript": "^5.9.3"
|
|
70
|
+
}
|
|
71
|
+
}
|