@clipwhisperer/common
Version:
ClipWhisperer Common - Shared library providing core utilities, database schemas, authentication, bucket management, and common functionality across all ClipWhisperer microservices
79 lines (78 loc) • 2.39 kB
JSON
{
"name": "@clipwhisperer/common",
"version": "1.0.51",
"description": "ClipWhisperer Common - Shared library providing core utilities, database schemas, authentication, bucket management, and common functionality across all ClipWhisperer microservices",
"keywords": [
"common",
"clip",
"whisperer",
"clipwhisperer",
"youtube",
"reddit",
"aws",
"redis",
"minio",
"s3"
],
"license": "ISC",
"author": "Omri Jukin",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"/src",
"./index.ts",
"dist"
],
"exports": {
".": "./dist/src/index.js",
"./index": "./dist/src/index.js",
"./dist/src/*": "./dist/src/*",
"./dist/src/infrastructure/services/*": "./dist/src/infrastructure/services/*",
"./dist/src/schemas/services/*": "./dist/src/schemas/services/*",
"./dist/src/types/services/*": "./dist/src/types/services/*",
"./src/*": "./src/*"
},
"scripts": {
"test": "jest --coverage",
"test:tsx": "tsx __tests__/basic-validation.test.ts",
"test:watch": "jest --watch",
"build": "tsc",
"version:patch": "npm run build && npm version patch && npm publish && git push",
"version:minor": "npm run build && npm version minor && npm publish && git push",
"version:major": "npm run build && npm version major && npm publish && git push"
},
"dependencies": {
"@aws-sdk/client-polly": "^3.839.0",
"axios": "^1.10.0",
"bullmq": "^5.56.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.7",
"dotenv": "^17.0.0",
"drizzle-orm": "^0.44.2",
"express": "^5.1.0",
"express-fileupload": "^1.4.3",
"express-zod-api": "23.6.3",
"gel": "^2.1.0",
"minio": "^8.0.5",
"mysql2": "^3.9.2",
"pg": "^8.16.3",
"pino": "^9.7.0",
"pino-pretty": "^13.0.0",
"swagger-ui-express": "^5.0.1",
"zod": "3.25.67"
},
"devDependencies": {
"@types/compression": "^1.8.1",
"@types/cookie-parser": "^1.4.9",
"@types/express-fileupload": "^1.4.4",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.7",
"@types/pg": "^8.15.4",
"@types/swagger-ui-express": "^4.1.8",
"drizzle-kit": "^0.31.4",
"jest": "^29.7.0",
"ts-jest": "^29.4.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
}
}