Files
medusa-store/www/packages/docs-ui/package.json
Shahed Nasser b3f75d8f21 docs: add AI Assistant (#5249)
* added components

* added ai assistant button

* change styling

* improve AI assistant

* change to a drawer

* added command support into search

* add AiAssistant to all projects

* remove usage of Text component

* added error handling

* use recaptcha

* fix new configurations

* fix background color

* change suggested questions
2023-10-05 11:10:44 +03:00

75 lines
1.9 KiB
JSON

{
"name": "docs-ui",
"version": "0.0.0",
"private": true,
"license": "MIT",
"publishConfig": {
"access": "public"
},
"main": "./dist/cjs/index.js",
"types": "./dist/cjs/index.d.ts",
"module": "./dist/esm/index.js",
"exports": {
".": {
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
},
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
}
}
},
"sideEffects": false,
"files": [
"dist/**"
],
"scripts": {
"build": "yarn clean && yarn build:js:cjs && yarn build:js:esm",
"build:js:cjs": "tsc --project tsconfig.cjs.json && tsc-alias -p tsconfig.cjs.json",
"build:js:esm": "tsc --project tsconfig.esm.json && tsc-alias -p tsconfig.esm.json",
"clean": "rimraf dist",
"dev": "yarn build:js:cjs && yarn build:js:esm"
},
"devDependencies": {
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.1",
"@types/react-google-recaptcha": "^2.1.6",
"clsx": "^2.0.0",
"cpy-cli": "^5.0.0",
"eslint-config-docs": "*",
"next": "latest",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rimraf": "^5.0.1",
"tailwind": "*",
"tailwindcss": "^3.3.3",
"tsc-alias": "^1.8.7",
"tsup": "^5.10.1",
"typescript": "^5.1.6"
},
"peerDependencies": {
"@types/react": ">=17",
"@types/react-dom": ">=17",
"next": "*",
"react": ">=17",
"react-dom": ">=17"
},
"dependencies": {
"@medusajs/icons": "latest",
"@medusajs/ui": "latest",
"@octokit/request": "^8.1.1",
"@react-hook/resize-observer": "^1.2.6",
"@segment/analytics-next": "^1.55.0",
"algoliasearch": "^4.20.0",
"prism-react-renderer": "^2.0.6",
"react-google-recaptcha": "^3.1.0",
"react-instantsearch": "^7.0.3",
"react-markdown": "^8.0.7",
"react-tooltip": "^5.21.3",
"react-transition-group": "^4.4.5",
"react-uuid": "^2.0.0"
}
}