mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
59 lines
1.4 KiB
JSON
59 lines
1.4 KiB
JSON
{
|
|
"name": "@nextui-org/code",
|
|
"version": "0.0.0-dev-v2-20230326134624",
|
|
"description": "Code is a component used to display inline code.",
|
|
"keywords": [
|
|
"code"
|
|
],
|
|
"author": "Junior Garcia <jrgarciadev@gmail.com>",
|
|
"homepage": "https://nextui.org",
|
|
"license": "MIT",
|
|
"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/components/code"
|
|
},
|
|
"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"
|
|
},
|
|
"peerDependencies": {
|
|
"react": ">=18"
|
|
},
|
|
"dependencies": {
|
|
"@nextui-org/system": "workspace:*",
|
|
"@nextui-org/theme": "workspace:*",
|
|
"@nextui-org/shared-utils": "workspace:*",
|
|
"@nextui-org/dom-utils": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"clean-package": "2.2.0",
|
|
"react": "^18.0.0"
|
|
},
|
|
"clean-package": "../../../clean-package.config.json",
|
|
"tsup": {
|
|
"clean": true,
|
|
"target": "es2019",
|
|
"format": [
|
|
"cjs",
|
|
"esm"
|
|
]
|
|
}
|
|
}
|