mirror of
https://github.com/imezx/Warp.git
synced 2025-04-24 15:10:03 +00:00
40 lines
1.4 KiB
JSON
40 lines
1.4 KiB
JSON
|
{
|
||
|
"name": "@algolia/autocomplete-plugin-algolia-insights",
|
||
|
"description": "A plugin to add Algolia Insights to Algolia Autocomplete.",
|
||
|
"version": "1.9.3",
|
||
|
"license": "MIT",
|
||
|
"homepage": "https://github.com/algolia/autocomplete",
|
||
|
"repository": "algolia/autocomplete",
|
||
|
"author": {
|
||
|
"name": "Algolia, Inc.",
|
||
|
"url": "https://www.algolia.com"
|
||
|
},
|
||
|
"source": "src/index.ts",
|
||
|
"types": "dist/esm/index.d.ts",
|
||
|
"module": "dist/esm/index.js",
|
||
|
"main": "dist/umd/index.production.js",
|
||
|
"umd:main": "dist/umd/index.production.js",
|
||
|
"unpkg": "dist/umd/index.production.js",
|
||
|
"jsdelivr": "dist/umd/index.production.js",
|
||
|
"sideEffects": false,
|
||
|
"files": [
|
||
|
"dist/"
|
||
|
],
|
||
|
"scripts": {
|
||
|
"build:clean": "rm -rf ./dist",
|
||
|
"build:esm": "babel src --root-mode upward --extensions '.ts,.tsx' --out-dir dist/esm --ignore '**/*/__tests__/'",
|
||
|
"build:types": "tsc -p ./tsconfig.declaration.json --outDir ./dist/esm",
|
||
|
"build:umd": "rollup --config",
|
||
|
"build": "rm -rf ./dist && yarn build:umd && yarn build:esm && yarn build:types",
|
||
|
"on:change": "concurrently \"yarn build:esm\" \"yarn build:types\"",
|
||
|
"prepare": "yarn run build:esm && yarn build:types",
|
||
|
"watch": "watch \"yarn on:change\" --ignoreDirectoryPattern \"/dist/\""
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"@algolia/autocomplete-shared": "1.9.3"
|
||
|
},
|
||
|
"peerDependencies": {
|
||
|
"search-insights": ">= 1 < 3"
|
||
|
}
|
||
|
}
|