mirror of
https://github.com/formbricks/formbricks.git
synced 2025-12-30 10:19:51 -06:00
56 lines
1.5 KiB
JSON
56 lines
1.5 KiB
JSON
{
|
|
"name": "@formbricks/js-core",
|
|
"private": true,
|
|
"type": "module",
|
|
"license": "MIT",
|
|
"version": "1.0.0",
|
|
"description": "Js core for Formbricks that contains the logic for executing the @formbricks/js library and is loaded asynchronously over the Formbricks API.",
|
|
"homepage": "https://formbricks.com",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/formbricks/formbricks"
|
|
},
|
|
"keywords": [
|
|
"Formbricks",
|
|
"surveys",
|
|
"experience management"
|
|
],
|
|
"sideEffects": false,
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"exports": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.umd.cjs"
|
|
},
|
|
"typesVersions": {
|
|
"*": {
|
|
"*": [
|
|
"./dist/index.d.ts"
|
|
]
|
|
}
|
|
},
|
|
"scripts": {
|
|
"dev": "vite build --watch --mode dev",
|
|
"build": "tsc && vite build",
|
|
"build:dev": "tsc && vite build --mode dev",
|
|
"go": "vite build --watch --mode dev",
|
|
"lint": "eslint . --ext .ts,.js,.tsx,.jsx",
|
|
"clean": "rimraf .turbo node_modules dist coverage",
|
|
"test": "vitest",
|
|
"test:coverage": "vitest run --coverage"
|
|
},
|
|
"author": "Formbricks <hola@formbricks.com>",
|
|
"devDependencies": {
|
|
"@formbricks/config-typescript": "workspace:*",
|
|
"@trivago/prettier-plugin-sort-imports": "5.2.2",
|
|
"@formbricks/eslint-config": "workspace:*",
|
|
"@vitest/coverage-v8": "3.1.3",
|
|
"terser": "5.39.1",
|
|
"vite": "6.3.5",
|
|
"vite-plugin-dts": "4.5.3",
|
|
"vitest": "3.1.3"
|
|
}
|
|
}
|