mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-25 10:30:30 -06:00
* init: rewritten formbricks api package * restrucure: client prepended formbricks api package * feat: cleanup error templating and node-fetch for non browser access * feat: replace package (build error for js packge due to api) * fix: rename methods & move error type * fix: imports of api via js * remove node-fetch --------- Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
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.1.6",
|
|
"eslint-config-formbricks": "workspace:*"
|
|
}
|
|
}
|