mirror of
https://github.com/formbricks/formbricks.git
synced 2025-12-30 18:30:32 -06:00
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
52 lines
1.3 KiB
JSON
52 lines
1.3 KiB
JSON
{
|
|
"name": "@formbricks/cache",
|
|
"private": true,
|
|
"type": "module",
|
|
"version": "0.1.0",
|
|
"homepage": "https://formbricks.com",
|
|
"description": "Unified Redis cache for Formbricks",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/src/index.d.ts",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/formbricks/formbricks"
|
|
},
|
|
"keywords": [
|
|
"Formbricks",
|
|
"cache",
|
|
"redis",
|
|
"caching"
|
|
],
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"exports": {
|
|
"types": "./dist/src/index.d.ts",
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.cjs"
|
|
},
|
|
"scripts": {
|
|
"clean": "rimraf .turbo node_modules coverage dist",
|
|
"lint": "eslint . --ext .ts,.js",
|
|
"lint:fix": "eslint . --ext .ts,.js --fix",
|
|
"lint:report": "eslint . --format json --output-file ../../lint-results/cache.json",
|
|
"build": "tsc && vite build",
|
|
"test": "vitest run",
|
|
"test:coverage": "vitest run --coverage",
|
|
"go": "vite build --watch --mode dev"
|
|
},
|
|
"author": "Formbricks <hola@formbricks.com>",
|
|
"dependencies": {
|
|
"@formbricks/logger": "workspace:*",
|
|
"redis": "5.8.1",
|
|
"zod": "3.24.4"
|
|
},
|
|
"devDependencies": {
|
|
"@formbricks/config-typescript": "workspace:*",
|
|
"@formbricks/eslint-config": "workspace:*",
|
|
"vite": "6.3.6",
|
|
"vitest": "3.1.3",
|
|
"@vitest/coverage-v8": "3.1.3"
|
|
}
|
|
}
|