mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-12 17:22:03 -06:00
* only add packages once to their main package and remove them from other packages to avoid version conflicts * update package versions * update package versions, clean packages * remove old vscode settings * exclude formbricks-com from pnpm dev * narrow down tsconfig includes, pnpm-lock update * add pnpm test to github action
29 lines
701 B
JSON
29 lines
701 B
JSON
{
|
|
"name": "@formbricks/api",
|
|
"version": "0.1.0",
|
|
"description": "A Typescript API-wrapper for managing the Formbricks Client API.",
|
|
"license": "MIT",
|
|
"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"
|
|
},
|
|
"dependencies": {
|
|
"@formbricks/errors": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@formbricks/types": "workspace:*",
|
|
"@formbricks/tsconfig": "workspace:*",
|
|
"eslint-config-formbricks": "workspace:*",
|
|
"tsup": "^7.1.0"
|
|
}
|
|
}
|