-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.67 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.67 KB
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
62
63
64
65
66
67
68
69
70
{
"name": "@mixpeek/react-searchkit",
"version": "0.1.1",
"description": "React component library for multimodal search — stages streaming, AI answers, and composable search UI",
"main": "dist/searchkit.cjs.js",
"module": "dist/searchkit.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/searchkit.esm.js",
"require": "./dist/searchkit.cjs.js",
"types": "./dist/index.d.ts"
},
"./styles.css": "./dist/style.css"
},
"bin": {
"mixpeek-bootstrap": "./scripts/bootstrap.mjs"
},
"files": [
"dist",
"scripts"
],
"sideEffects": [
"**/*.css"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint src --ext .ts,.tsx",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react": "^4.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.3.0",
"vite": "^5.0.0",
"vite-plugin-css-injected-by-js": "^3.3.0",
"vite-plugin-dts": "^3.7.0"
},
"keywords": [
"mixpeek",
"searchkit",
"react-searchkit",
"react",
"multimodal-search",
"ai-search",
"search-component",
"streaming-search",
"site-search",
"cmd-k",
"semantic-search"
],
"license": "MIT",
"author": "Mixpeek <hello@mixpeek.com> (https://mixpeek.com)",
"repository": {
"type": "git",
"url": "https://github.com/mixpeek/searchkit.git"
},
"homepage": "https://mxp.co/searchkit",
"bugs": {
"url": "https://github.com/mixpeek/searchkit/issues"
}
}