-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.45 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
{
"name": "search-buddy",
"version": "1.8.2",
"description": "Your search-buddy who will get you to the right URL. Ultra small and flexible and no dependency required. It offers a built-in filtering algorithm for client side processing.",
"keywords": [
"search",
"search plugin",
"navigation plugin",
"spotlight"
],
"scripts": {
"test": "jest",
"dev:watch": "webpack serve -c webpack.development.config.js",
"dev": "webpack --config webpack.development.config.js",
"production": "webpack --config webpack.production-standalone.config.js && rollup src/index.js -c --bundleConfigAsCjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/michaldoda/search-buddy.git"
},
"module": "dist/esm/index.js",
"style": "dist/esm/index.css",
"files": [
"/dist"
],
"author": {
"name": "Michal Doda",
"email": "michael.johnny.b@gmail.com",
"url": "https://mevelix.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/michaldoda/search-buddy/issues"
},
"homepage": "https://michaldoda.github.io/search-buddy/",
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.18.0",
"@babel/preset-env": "^7.18.0",
"css-loader": "^6.7.1",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"rollup-plugin-import-css": "^3.0.3",
"style-loader": "^3.3.1",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0"
}
}