@elastic/search-application-client
Version:
A Search Application Client for Elasticsearch
83 lines (82 loc) • 2.54 kB
JSON
{
"name": "@elastic/search-application-client",
"version": "8.9.0-2",
"description": "A Search Application Client for Elasticsearch",
"license": "Apache-2.0",
"types": "dist/index.d.ts",
"jsdelivr": "dist/index.global.js",
"keywords": [
"search",
"elastic",
"elasticsearch"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./package": "./package.json",
"./package.json": "./package.json"
},
"type": "module",
"files": [
"bin",
"dist"
],
"bin": {
"update-template": "./bin/template.js"
},
"scripts": {
"format": "prettier --ignore-unknown --ignore-path .gitignore .",
"format:write": "yarn format --write",
"lint": "eslint --ext *.ts,*.tsx,*.js,*.jsx --ignore-pattern '**/node_modules/**' --ignore-pattern '**/dist/**' --ignore-pattern '**/build/**'",
"typecheck": "tsc --noEmit",
"test:ci": "jest --runInBand",
"test": "jest",
"build": "tsup --minify",
"watch": "tsup --watch",
"prepare": "husky install",
"update::template": "node bin/template.js",
"prepublishing": "yarn typecheck && yarn lint && yarn test && yarn build",
"changeset": "changeset",
"publish::public": "yarn prepublishing && changeset version && changeset publish",
"publish::local": "yarn build && cd examples/sandbox && rm -rf node_modules/@elastic/search-application-client && yarn add file:../../"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/react": "^18.2.9",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"tsup": "^6.7.0",
"typescript": "^5.0.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "yarn lint",
"src/**/*.{ts,tsx}": "yarn typecheck --resolveJsonModule --esModuleInterop",
"**/*": "yarn format"
},
"publishConfig": {
"access": "public"
},
"repository": "https://github.com/elastic/search-application-client",
"dependencies": {
"@changesets/cli": "^2.26.1",
"@elastic/elasticsearch": "^8.8.0",
"chalk": "^5.2.0",
"cross-fetch": "^3.1.6",
"inquirer": "^9.2.7",
"nock": "^13.3.1",
"ora": "^6.3.1"
}
}