mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-01 19:30:29 -06:00
26 lines
625 B
JSON
26 lines
625 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",
|
|
"go": "tsup --watch",
|
|
"lint": "eslint ./src --fix",
|
|
"clean": "rimraf .turbo node_modules dist"
|
|
},
|
|
"devDependencies": {
|
|
"@formbricks/tsconfig": "workspace:*",
|
|
"eslint-config-formbricks": "workspace:*",
|
|
"tsup": "^7.2.0"
|
|
}
|
|
}
|