UNPKG

@dynamiq/assistant

Version:

A chat widget library for React and vanilla JavaScript

122 lines (121 loc) 3.23 kB
{ "name": "@dynamiq/assistant", "version": "1.9.5", "description": "A chat widget library for React and vanilla JavaScript", "files": [ "dist" ], "type": "module", "main": "dist/index.js", "module": "dist/index.esm.js", "types": "dist/index.d.ts", "exports": { ".": { "import": "./dist/index.esm.js", "require": "./dist/index.js", "types": "./dist/index.d.ts" }, "./react": { "import": "./dist/react/index.esm.js", "require": "./dist/react/index.js", "types": "./dist/react/types/react/index.d.ts" }, "./vanilla": { "import": "./dist/vanilla/index.esm.js", "require": "./dist/vanilla/index.js", "types": "./dist/vanilla/types/vanilla/index.d.ts" } }, "targets": { "main": false, "module": false, "types": false }, "typesVersions": { "*": { "react": [ "dist/react/types/react/index.d.ts" ], "vanilla": [ "dist/vanilla/types/vanilla/index.d.ts" ] } }, "publishConfig": { "access": "public" }, "repository": { "type": "git", "url": "git+https://github.com/dynamiq-ai/assistant.git" }, "bugs": { "url": "https://github.com/dynamiq-ai/assistant/issues" }, "homepage": "https://github.com/dynamiq-ai/assistant#readme", "scripts": { "build": "rollup -c", "dev": "rollup -c -w", "test": "jest", "start:react": "parcel examples/react/index.html", "start:vanilla": "parcel examples/vanilla/index.html", "build:examples": "parcel build examples/react/index.html --dist-dir dist/examples --public-url ./", "lint": "eslint src/**/*.{ts,tsx}" }, "keywords": [ "chat", "widget", "react", "javascript" ], "author": "Pavlo Kurochka", "license": "Apache-2.0", "devDependencies": { "@commitlint/cli": "^19.8.0", "@commitlint/config-conventional": "^19.8.0", "@eslint/js": "^9.23.0", "@rollup/plugin-commonjs": "^22.0.0", "@rollup/plugin-node-resolve": "^13.3.0", "@rollup/plugin-typescript": "^12.1.2", "@testing-library/jest-dom": "^5.16.4", "@testing-library/react": "^13.2.0", "@types/jest": "^27.5.1", "@types/react": "^18.0.9", "@types/react-dom": "^18.0.4", "cz-conventional-changelog": "^3.3.0", "eslint": "^9.23.0", "eslint-plugin-react": "^7.37.4", "globals": "^16.0.0", "husky": "^9.1.7", "jest": "^28.1.0", "jest-environment-jsdom": "^28.1.0", "parcel": "^2.6.0", "postcss": "^8.4.14", "process": "^0.11.10", "react": "^18.1.0", "react-dom": "^18.1.0", "rollup": "^2.74.1", "rollup-plugin-peer-deps-external": "^2.2.4", "rollup-plugin-postcss": "^4.0.2", "rollup-plugin-terser": "^7.0.2", "semantic-release": "^24.2.3", "ts-jest": "^28.0.2", "typescript": "^4.6.4", "typescript-eslint": "^8.28.0" }, "peerDependencies": { "marked": ">=15.0.0", "react": ">=16.8.0", "react-dom": ">=16.8.0", "vega": "5.33.0", "vega-embed": "6.29.0", "vega-lite": "5.23.0" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "dependencies": { "eventsource-parser": "^3.0.2" } }