nextui/packages/core/react/package.json
2023-03-25 19:10:52 -03:00

77 lines
1.9 KiB
JSON

{
"name": "@nextui-org/react",
"version": "2.0.0-beta.1",
"description": "🚀 Beautiful and modern React UI library.",
"author": "Junior Garcia <jrgarciadev@gmail.com>",
"homepage": "https://nextui.org",
"license": "MIT",
"keywords": [
"next",
"next ui",
"components",
"modern components",
"react components",
"react ui"
],
"main": "src/index.ts",
"sideEffects": false,
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nextui-org/nextui.git",
"directory": "packages/core/react"
},
"bugs": {
"url": "https://github.com/nextui-org/nextui/issues"
},
"scripts": {
"build": "tsup src --dts",
"dev": "yarn build:fast -- --watch",
"clean": "rimraf dist .turbo",
"typecheck": "tsc --noEmit",
"build:fast": "tsup src",
"prepack": "clean-package",
"postpack": "clean-package restore"
},
"dependencies": {
"@nextui-org/system": "workspace:*",
"@nextui-org/theme": "workspace:*",
"@nextui-org/accordion": "workspace:*",
"@nextui-org/avatar": "workspace:*",
"@nextui-org/badge": "workspace:*",
"@nextui-org/button": "workspace:*",
"@nextui-org/card": "workspace:*",
"@nextui-org/checkbox": "workspace:*",
"@nextui-org/code": "workspace:*",
"@nextui-org/drip": "workspace:*",
"@nextui-org/link": "workspace:*",
"@nextui-org/pagination": "workspace:*",
"@nextui-org/radio": "workspace:*",
"@nextui-org/snippet": "workspace:*",
"@nextui-org/spinner": "workspace:*",
"@nextui-org/switch": "workspace:*",
"@nextui-org/tooltip": "workspace:*",
"@nextui-org/user": "workspace:*"
},
"peerDependencies": {
"react": ">=18"
},
"devDependencies": {
"react": "^18.0.0",
"clean-package": "2.2.0"
},
"tsup": {
"clean": true,
"target": "es2019",
"format": [
"cjs",
"esm"
]
}
}