mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-09 23:30:06 -06:00
* format code * fix building issue in database package * update turbo config and package jsons * update error package with more information and license * fix typescript issues in ui package * update package-lock * update packages * clean dependencies in web * clean up dependencies in demo & formbricks-com * remove unsused template file * remove legacy capture endpoint * remove unfinished client endpoints * clean up unused functions * fix formbricks not loading on invalid session * update readme
27 lines
648 B
JSON
27 lines
648 B
JSON
{
|
|
"name": "@formbricks/errors",
|
|
"license": "MIT",
|
|
"description": "A helper package containing general error classes for Formbricks",
|
|
"version": "0.1.0",
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"sideEffects": false,
|
|
"files": [
|
|
"dist/**"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"dev": "tsup --watch",
|
|
"lint": "eslint ./src --fix",
|
|
"clean": "rimraf .turbo node_modules dist"
|
|
},
|
|
"devDependencies": {
|
|
"@formbricks/tsconfig": "workspace:*",
|
|
"eslint": "^8.41.0",
|
|
"eslint-config-formbricks": "workspace:*",
|
|
"rimraf": "^5.0.1",
|
|
"tsup": "^6.7.0"
|
|
}
|
|
}
|