This repository was archived by the owner on Feb 26, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.58 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.58 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
71
72
73
74
75
76
77
{
"name": "docs-searchbar.js",
"version": "2.5.0",
"description": "Add a relevant search bar to your documentation using Meilisearch",
"keywords": [
"documentation",
"searchbar",
"meilisearch",
"search-as-you-type"
],
"main": "dist/npm/index.js",
"typings": "./index.d.ts",
"scripts": {
"build": "./scripts/build",
"build:css": "./scripts/build-css",
"build:js": "./scripts/build-js",
"format:scss": "prettier --write ./src/**/*.scss",
"format:md": "prettier --write '**/*.md'",
"playground": "yarn --cwd ./playgrounds/html && yarn --cwd ./playgrounds/html serve",
"playground:setup": "yarn --cwd ./playgrounds/html && yarn --cwd ./playgrounds/html setup",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "./scripts/test",
"test:watch": "./scripts/test-watch",
"test:browser": "yarn --cwd ./tests/env/browser && yarn --cwd ./tests/env/browser setup && yarn --cwd ./tests/env/browser serve",
"test:e2e:watch": "concurrently --kill-others -s first \"yarn test:browser\" \"cypress open\"",
"test:e2e": "concurrently --kill-others -s first \"yarn test:browser\" \"cypress run\""
},
"files": [
"dist/"
],
"author": "Meilisearch <bonjour@meilisearch.com> (https://github.com/meilisearch/)",
"license": "MIT",
"repository": "meilisearch/docs-searchbar.js",
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/register": "^7.22.5",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"autoprefixer": "^9.8.8",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.0.2",
"babel-loader": "^9.1.2",
"babel-plugin-rewire": "^1.2.0",
"concurrently": "^6.3.0",
"cssnano": "^4.1.11",
"cypress": "^8.6.0",
"eslint": "^7.21.0",
"eslint-config-algolia": "^16.0.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-typescript": "^3.0.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.1.8",
"eslint-plugin-prettier": "^3.3.0",
"jest": "^26.6.3",
"jsdom": "^20.0.3",
"postcss-cli": "^7.1.2",
"prettier": "^2.0.5",
"pretty-bytes-cli": "^2.0.0",
"sass": "^1.63.3",
"sinon": "^15.1.0",
"typescript": "^5.1.3",
"uglify-js": "^3.17.4",
"webpack": "^5.86.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"autocomplete.js": "^0.38.1",
"meilisearch": "^0.32.5",
"to-factory": "^1.0.0",
"zepto": "^1.2.0"
}
}