mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
* chore: rebrand in progress * chore: update docs to use heroui * chore: components renbranded * chore: figma moved to the docs files * fix: posthog config * fix(docs): extra classname in form example (#4465) * chore: clean git * chore: make heroui private * chore: new logo * chore: node env var renamed * chore: public robots txt deleted * chore: wrangler installed * chore: wrangler renamed * chore: cloudlfare workers removed * chore: force vercel deploy * refactor: first migration and provider * refactor: rename nextui plugin * refactor: rename github site * refactor: rename CONTRIBUTING * refactor: rename package name * refactor: nextjs image hostname * refactor: mdx repo nextui-org rename frontio-ai * refactor: nextui.org rename heroui.com * refactor: add heroui to missing places * fix: heroui plugin name * fix: update docs * docs: nextui to heroui add npmrc pnpm migratation * chore: rename all packages with new org name * chore: replace frontio-ai by frontioai * chore: revert previous changes * chore: small adjustment * chore: doc updated * feat: blog * chore: avatar updated * fix: url * chore: add new ogimage * fix: ogimage command * fix: heroui name and storybook welcome page * fix: og image url * feat: favicon and icon changed --------- Co-authored-by: աӄա <wingkwong.code@gmail.com> Co-authored-by: winches <329487092@qq.com>
61 lines
1.7 KiB
JSON
61 lines
1.7 KiB
JSON
{
|
|
"name": "@heroui/progress",
|
|
"version": "2.2.6",
|
|
"description": "Progress bars show either determinate or indeterminate progress of an operation over time.",
|
|
"keywords": [
|
|
"progress"
|
|
],
|
|
"author": "Junior Garcia <jrgarciadev@gmail.com>",
|
|
"homepage": "https://heroui.com",
|
|
"license": "MIT",
|
|
"main": "src/index.ts",
|
|
"sideEffects": false,
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/frontio-ai/heroui.git",
|
|
"directory": "packages/components/progress"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/frontio-ai/heroui/issues"
|
|
},
|
|
"scripts": {
|
|
"build": "tsup src --dts",
|
|
"build:fast": "tsup src",
|
|
"dev": "pnpm build:fast --watch",
|
|
"clean": "rimraf dist .turbo",
|
|
"typecheck": "tsc --noEmit",
|
|
"prepack": "clean-package",
|
|
"postpack": "clean-package restore"
|
|
},
|
|
"peerDependencies": {
|
|
"react": ">=18 || >=19.0.0-rc.0",
|
|
"react-dom": ">=18 || >=19.0.0-rc.0",
|
|
"@heroui/theme": ">=2.4.0",
|
|
"@heroui/system": ">=2.4.0"
|
|
},
|
|
"dependencies": {
|
|
"@heroui/shared-utils": "workspace:*",
|
|
"@heroui/react-utils": "workspace:*",
|
|
"@heroui/use-is-mounted": "workspace:*",
|
|
"@react-aria/i18n": "3.12.4",
|
|
"@react-aria/progress": "3.4.18",
|
|
"@react-aria/utils": "3.26.0",
|
|
"@react-types/progress": "3.5.8"
|
|
},
|
|
"devDependencies": {
|
|
"@heroui/theme": "workspace:*",
|
|
"@heroui/system": "workspace:*",
|
|
"@heroui/card": "workspace:*",
|
|
"@heroui/chip": "workspace:*",
|
|
"clean-package": "2.2.0",
|
|
"react": "^18.0.0",
|
|
"react-dom": "^18.0.0"
|
|
},
|
|
"clean-package": "../../../clean-package.config.json"
|
|
} |