mirror of
https://github.com/tauri-apps/meilisearch-docsearch.git
synced 2026-01-31 00:45:16 +01:00
62 lines
1.5 KiB
JSON
62 lines
1.5 KiB
JSON
{
|
|
"name": "meilisearch-docsearch",
|
|
"version": "0.6.0",
|
|
"description": "A quick search component for meilisearch, inspired by algolia/docsearch.",
|
|
"license": "MIT or Apache-2.0",
|
|
"files": [
|
|
"dist",
|
|
"LICENSE_*"
|
|
],
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.cjs"
|
|
},
|
|
"./solid": {
|
|
"types": "./dist/index.solid.d.ts",
|
|
"import": "./dist/index.solid.jsx",
|
|
"require": "./dist/index.solid.jsx"
|
|
},
|
|
"./css": "./dist/index.css",
|
|
"./css/variables": "./dist/variables.css",
|
|
"./css/button": "./dist/button.css",
|
|
"./css/modal": "./dist/modal.css"
|
|
},
|
|
"scripts": {
|
|
"prepublishOnly": "pnpm build",
|
|
"build": "tsup",
|
|
"watch": "tsup --watch",
|
|
"ts:check": "tsc --noEmit",
|
|
"format": "prettier --write \"./**/*.{js,jsx,ts,tsx,json,html,css}\" --ignore-path .gitignore",
|
|
"format:check": "prettier --check \"./**/*.{js,jsx,ts,tsx,json,html,css}\" --ignore-path .gitignore"
|
|
},
|
|
"dependencies": {
|
|
"meilisearch": "0.42.0",
|
|
"solid-js": "1.8.22"
|
|
},
|
|
"devDependencies": {
|
|
"esbuild": "0.23.1",
|
|
"esbuild-plugin-solid": "0.6.0",
|
|
"prettier": "3.3.3",
|
|
"tsup": "8.2.4",
|
|
"typescript": "5.6.2"
|
|
},
|
|
"resolutions": {
|
|
"semver": ">=7.5.2"
|
|
},
|
|
"keywords": [
|
|
"meilisearch",
|
|
"search",
|
|
"docsearch",
|
|
"autocomplete",
|
|
"docs",
|
|
"quicksearch",
|
|
"quicksearchbar"
|
|
],
|
|
"packageManager": "pnpm@9.10.0"
|
|
}
|