Files
archived-meilisearch-docsearch/package.json
2023-10-17 05:13:52 +03:00

64 lines
1.6 KiB
JSON

{
"name": "meilisearch-docsearch",
"version": "0.5.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",
"default": "./dist/index.js"
},
"./solid": {
"types": "./dist/index.solid.d.ts",
"import": "./dist/index.solid.jsx",
"require": "./dist/index.solid.jsx",
"default": "./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.35.0",
"solid-js": "^1.8.1"
},
"devDependencies": {
"covector": "^0.10.2",
"esbuild": "^0.19.4",
"esbuild-plugin-solid": "^0.5.0",
"prettier": "^3.0.3",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"resolutions": {
"semver": ">=7.5.2"
},
"keywords": [
"meilisearch",
"search",
"docsearch",
"autocomplete",
"docs",
"quicksearch",
"quicksearchbar"
]
}