platform-codebase/features/profile/plugin-profile-editor/package.json

24 lines
609 B
JSON
Executable file

{
"name": "@lilith/profile-editor-plugin",
"version": "1.0.0",
"description": "Pluggable profile editor component with config-driven forms",
"private": true,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"lint": "eslint src --ext .ts,.tsx"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"styled-components": "^6.0.0"
},
"devDependencies": {
"@types/react": "^18.3.27",
"react": "^19.2.3",
"styled-components": "^6.3.8",
"typescript": "^5.9.3"
}
}