Project Init

This commit is contained in:
Muluhabt
2026-05-29 15:23:46 +03:00
commit 2fbc557aac
67387 changed files with 6063341 additions and 0 deletions

42
node_modules/@mantine/hooks/package.json generated vendored Normal file
View File

@@ -0,0 +1,42 @@
{
"name": "@mantine/hooks",
"version": "8.3.18",
"description": "A collection of 50+ hooks for state and UI management",
"homepage": "https://mantine.dev",
"license": "MIT",
"author": "Vitaly Rtishchev <rtivital@gmail.com>",
"keywords": [
"frontend",
"hooks",
"library",
"next",
"nextjs",
"react",
"react-hooks",
"state"
],
"sideEffects": false,
"main": "./cjs/index.cjs",
"module": "./esm/index.mjs",
"types": "./lib/index.d.ts",
"exports": {
".": {
"import": {
"types": "./lib/index.d.mts",
"default": "./esm/index.mjs"
},
"require": {
"types": "./lib/index.d.ts",
"default": "./cjs/index.cjs"
}
}
},
"repository": {
"url": "https://github.com/mantinedev/mantine.git",
"type": "git",
"directory": "packages/@mantine/hooks"
},
"peerDependencies": {
"react": "^18.x || ^19.x"
}
}