-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 1.63 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
62
{
"name": "instantsearch-itemsjs-adapter",
"version": "1.1.5",
"description": "An adapter to use ItemsJs based client-side search with an Algolia Instantsearch front-end.",
"main": "./lib/adapter",
"directories": {
"lib": "lib"
},
"files": [
"lib"
],
"dependencies": {
"@algolia/client-search": "^4.11.0",
"@babel/plugin-transform-modules-commonjs": "^7.16.0",
"itemsjs": "^2.1.14",
"tsup": "^5.11.7"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.3.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.3.1",
"prettier": "2.4.1",
"ts-jest": "^27.0.7",
"typescript": "^4.5.2"
},
"scripts": {
"test": "jest",
"eslint": "npx eslint . --ext .js,.jsx,.ts,.tsx",
"eslint:fix": "npm run eslint -- --fix",
"build": "tsup --dts"
},
"keywords": [
"itemsjs",
"instantsearch",
"site-search",
"client-side",
"typescript"
],
"author": "Unplatform",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/unplatform-io/instantsearch-itemsjs-adapter.git"
},
"bugs": {
"url": "https://github.com/unplatform-io/instantsearch-itemsjs-adapter/issues"
},
"homepage": "https://github.com/unplatform-io/instantsearch-itemsjs-adapter#readme",
"volta": {
"node": "14.18.1",
"npm": "7.24.2"
}
}