-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
61 lines (61 loc) · 1.54 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "meilisearch-docsearch",
"version": "0.7.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.9.1"
},
"devDependencies": {
"esbuild": "0.24.0",
"esbuild-plugin-solid": "0.6.0",
"prettier": "3.3.3",
"tsup": "8.3.0",
"typescript": "5.6.2"
},
"resolutions": {
"semver": ">=7.5.2"
},
"keywords": [
"meilisearch",
"search",
"docsearch",
"autocomplete",
"docs",
"quicksearch",
"quicksearchbar"
],
"packageManager": "[email protected]"
}