embed-dossier-mstr-react
Version:
This is a React component that allows you to embed a MicroStrategy Dossier in your React application.
63 lines • 1.66 kB
JSON
{
"name": "embed-dossier-mstr-react",
"version": "1.2.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"sideEffects": false,
"private": false,
"license": "MIT",
"files": [
"dist/**"
],
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "14.2.0",
"@types/jsdom": "^21.1.7",
"@types/react": "^18.2.61",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/ui": "3.0.6",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jsdom": "24.0.0",
"tsup": "^8.0.2",
"typescript": "5.5.4",
"vitest": "^3.0.6"
},
"dependencies": {
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"mstr",
"microstrategy",
"react",
"dossier",
"embed",
"sdk",
"api",
"typescript",
"business intelligence",
"bi"
],
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --external react",
"dev": "tsup src/index.ts --format esm,cjs --watch --dts --external react",
"lint": "eslint \"src/**/*.ts*\"",
"lint:fix": "eslint \"src/**/*.ts*\" --fix",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
"test": "vitest run --reporter=json > report.json",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage"
}
}