mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-08 00:40:09 -06:00
* update packages npm packages * fix types bug * update demo npm packages * update web npm packages * change formbricks-web to v1.1
29 lines
727 B
JSON
29 lines
727 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",
|
|
"go": "tsup --watch",
|
|
"lint": "eslint ./src --fix",
|
|
"clean": "rimraf .turbo node_modules dist"
|
|
},
|
|
"devDependencies": {
|
|
"@formbricks/types": "workspace:*",
|
|
"@formbricks/lib": "workspace:*",
|
|
"@formbricks/tsconfig": "workspace:*",
|
|
"tsup": "^7.2.0",
|
|
"typescript": "5.2.2",
|
|
"eslint-config-formbricks": "workspace:*"
|
|
}
|
|
}
|