* feat(v4): add new UI (#2555) * feat: add new footer ui * feat: add new search box ui * feat: add searchbox actions * feat: add start screen * feat: add no results screen * feat: add new card ui * feat: add new icons * feat: add new key press class * fix: cypress tests * fix: circleci * fix: circleci * fix: close aria label * fix: circleci * fix: remove unused classes * fix: circleci * feat: update version * feat: add new dark mode ui * fix: colors * fix: design review * fix: hit title length * fix: improve accessibility * fix: ci * chore: increase bundle size threshold * fix: css * feat(v4): ask-ai foundations ✨ (#2574) * feat(v4): docsearch askAI context (#2587) * fix(v4): ask ai updates (#2654) * feat(v4): update beta documentation (#2659) * chore: release v4.0.0-beta.0 (#2660) * fix: make release run on branches like v4 * chore: release v4.0.0-beta.0 * hotfix: closing on askai error * chore: release v4.0.0-beta.1 (#2661) * fix: add a section on models * fix: update to `<package>@beta` * feat(docsearch-website): Updated docs (#2662) * feat(v4): update the landing page (#2665) * fix: beta in readme * feat: added glow around the search bar and a little copy above the keyboard * feat: add glow around the search bar and copy above the keyboard * fix: Add more styling * fix: polishing v4 (#2667) * chore: release v4.0.0-beta.2 (#2668) * fix: update docusaurus tarballs * fix(website): update docusaurus tarballs * fix: mobile search bar --------- Co-authored-by: Vasco Bettencourt <32492444+vascobettencourt@users.noreply.github.com> Co-authored-by: Natan Yagudayev <natanyagudayev@gmail.com>
73 lines
2 KiB
JSON
73 lines
2 KiB
JSON
{
|
|
"name": "@docsearch/react",
|
|
"description": "React package for DocSearch, the best search experience for docs.",
|
|
"version": "4.0.0-beta.2",
|
|
"license": "MIT",
|
|
"homepage": "https://docsearch.algolia.com",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/algolia/docsearch.git",
|
|
"directory": "packages/docsearch-react"
|
|
},
|
|
"author": {
|
|
"name": "Algolia, Inc.",
|
|
"url": "https://www.algolia.com"
|
|
},
|
|
"sideEffects": false,
|
|
"files": [
|
|
"dist/",
|
|
"style/",
|
|
"button.js",
|
|
"modal.js"
|
|
],
|
|
"source": "src/index.ts",
|
|
"types": "dist/esm/index.d.ts",
|
|
"module": "dist/esm/index.js",
|
|
"main": "dist/umd/index.js",
|
|
"umd:main": "dist/umd/index.js",
|
|
"unpkg": "dist/umd/index.js",
|
|
"jsdelivr": "dist/umd/index.js",
|
|
"scripts": {
|
|
"build:clean": "rm -rf ./dist",
|
|
"build:clean-types": "rm -rf ./dist/esm/types",
|
|
"build:types": "tsc -p ./tsconfig.declaration.json --outDir ./dist/esm/types",
|
|
"build": "yarn build:clean && yarn build:types && rollup --config --bundleConfigAsCjs && yarn build:clean-types",
|
|
"on:change": "yarn build",
|
|
"watch": "nodemon --watch src --ext ts,tsx,js,jsx,json --ignore dist/ --ignore node_modules/ --verbose --delay 250ms --exec \"yarn on:change\""
|
|
},
|
|
"dependencies": {
|
|
"@ai-sdk/react": "^1.2.12",
|
|
"@algolia/autocomplete-core": "1.19.2",
|
|
"@docsearch/css": "4.0.0-beta.2",
|
|
"algoliasearch": "^5.28.0",
|
|
"marked": "^15.0.12"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-replace": "6.0.2",
|
|
"@testing-library/jest-dom": "6.6.3",
|
|
"@testing-library/react": "16.2.0",
|
|
"nodemon": "^3.1.0",
|
|
"vitest": "3.0.2",
|
|
"zod": "^3.25.67"
|
|
},
|
|
"peerDependencies": {
|
|
"@types/react": ">= 16.8.0 < 20.0.0",
|
|
"react": ">= 16.8.0 < 20.0.0",
|
|
"react-dom": ">= 16.8.0 < 20.0.0",
|
|
"search-insights": ">= 1 < 3"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"@types/react": {
|
|
"optional": true
|
|
},
|
|
"react": {
|
|
"optional": true
|
|
},
|
|
"react-dom": {
|
|
"optional": true
|
|
},
|
|
"search-insights": {
|
|
"optional": true
|
|
}
|
|
}
|
|
}
|