@darksnow-ui/collapsible
Version:
collapsible component for DarkSnow UI
64 lines • 1.5 kB
JSON
{
"name": "@darksnow-ui/collapsible",
"version": "1.0.0",
"description": "collapsible component for DarkSnow UI",
"keywords": [
"react",
"collapsible",
"component",
"ui",
"darksnow",
"typescript"
],
"author": "Anderson Rosa",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/darksnow-ui/darksnow-ui.git",
"directory": "components/ui/collapsible"
},
"homepage": "https://github.com/darksnow-ui/darksnow-ui#readme",
"bugs": {
"url": "https://github.com/darksnow-ui/darksnow-ui/issues"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./styles.css": "./dist/styles.css"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"dependencies": {
"@radix-ui/react-collapsible": "^1.1.1",
"clsx": "^2.1.1"
},
"devDependencies": {
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tsup": "^8.5.0",
"typescript": "^5.3.3"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext ts,tsx",
"lint:fix": "eslint src --ext ts,tsx --fix"
}
}