| 1234567891011121314151617181920212223242526272829303132333435363738 |
- {
- "name": "@vendure/elasticsearch-plugin",
- "version": "3.2.4",
- "license": "GPL-3.0-or-later",
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "files": [
- "lib/**/*"
- ],
- "repository": {
- "type": "git",
- "url": "https://github.com/vendure-ecommerce/vendure"
- },
- "scripts": {
- "watch": "tsc -p ./tsconfig.build.json --watch",
- "build": "rimraf lib && tsc -p ./tsconfig.build.json",
- "lint": "eslint --fix .",
- "test": "vitest --run",
- "e2e": "cross-env PACKAGE=elasticsearch-plugin vitest --config ../../e2e-common/vitest.config.mts --run",
- "e2e:watch": "cross-env PACKAGE=elasticsearch-plugin vitest --config ../../e2e-common/vitest.config.mts"
- },
- "homepage": "https://www.vendure.io/",
- "funding": "https://github.com/sponsors/michaelbromley",
- "publishConfig": {
- "access": "public"
- },
- "dependencies": {
- "@elastic/elasticsearch": "~7.9.1",
- "deepmerge": "^4.2.2",
- "fast-deep-equal": "^3.1.3"
- },
- "devDependencies": {
- "@vendure/common": "3.2.4",
- "@vendure/core": "3.2.4",
- "rimraf": "^5.0.5",
- "typescript": "5.8.2"
- }
- }
|