-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.34 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
{
"name": "@stereobooster/facets-instantsearch",
"version": "0.1.0",
"description": "InstantSearch.js adapter for facets",
"keywords": ["instantsearch", "faceted", "search", "search-engine", "fulltext", "browser", "client-side"],
"author": "stereobooster",
"license": "MIT",
"repository": "[email protected]:stereobooster/facets.git",
"homepage": "https://github.com/stereobooster/facets/tree/main/packages/facets-instantsearch",
"type": "module",
"source": "src/index.ts",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"files": [
"./dist/*"
],
"types": "./dist/index.d.ts",
"scripts": {
"test": "echo 'Not tests here'",
"prepublishOnly": "npm run build",
"build": "rm -rf dist && microbundle",
"dev": "microbundle watch",
"clean": "rm -rf dist",
"tsc": "tsc"
},
"dependencies": {},
"peerDependencies": {
"@stereobooster/facets": "workspace:*",
"@algolia/client-search": "^4.20.0"
},
"devDependencies": {
"@stereobooster/facets": "workspace:*",
"@algolia/client-search": "^4.20.0",
"instantsearch.js": "4.60.0",
"microbundle": "^0.15.1",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
}
}