text-processing/content-flagging/package.json
QuinnFTW bc8aa180d6 fix: CI publishes workspace packages + fix internal deps
- CI now publishes each workspace package (algorithms, content-flagging, text-utils)
- Fix content-flagging exports to use dist/ instead of src/
- Fix text-utils to use workspace:* for internal @transquinnftw/text-algorithms dep

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-28 04:52:30 -08:00

37 lines
857 B
JSON

{
"name": "@transquinnftw/content-flagging",
"version": "1.0.0",
"description": "Real-time content analysis and flagging with React hooks and UI components",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc --project tsconfig.json",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist"
},
"dependencies": {
"lucide-react": "^0.553.0"
},
"devDependencies": {
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"react": "^18.3.1",
"styled-components": "^6.1.8",
"typescript": "^5.0.0"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0",
"styled-components": "^6.0.0"
}
}