platform-codebase/features/profile/client/display/package.json
2026-02-19 12:40:30 -08:00

38 lines
906 B
JSON

{
"name": "@lilith/profile-display-client",
"version": "1.0.0",
"description": "Client library for profile display and showcase components",
"private": true,
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "lixbuild",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@lilith/ui-styled-components": "*",
"@lilith/ui-theme": "^1.3.5",
"styled-components": "6.3.8",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^8.0.0",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"peerDependencies": {
"react": "^19.1.0",
"react-dom": "^19.1.0"
}
}