| 12345678910111213141516171819202122232425262728293031323334 |
- {
- "name": "@vendure/elasticsearch-plugin",
- "version": "2.2.0-next.5",
- "license": "MIT",
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "files": [
- "lib/**/*"
- ],
- "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.ts --run",
- "e2e:watch": "cross-env PACKAGE=elasticsearch-plugin vitest --config ../../e2e-common/vitest.config.ts"
- },
- "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": "2.2.0-next.5",
- "@vendure/core": "2.2.0-next.5",
- "rimraf": "^3.0.2",
- "typescript": "5.1.6"
- }
- }
|