UNPKG

search-string

Version:

Another parser for advanced search query syntax.

51 lines (50 loc) 1.54 kB
{ "name": "search-string", "version": "4.1.0", "description": "Another parser for advanced search query syntax.", "type": "module", "main": "./dist/cjs/searchString.js", "module": "./dist/esm/searchString.js", "exports": { "./package.json": "./package.json", ".": { "import": "./dist/esm/searchString.js", "require": "./dist/cjs/searchString.js" } }, "files": [ "dist" ], "scripts": { "ci": "npm run lint && npm test", "lint": "eslint ./src --ext .ts", "prepublishOnly": "npm run build", "build": "rm -rf dist && npm run build:check-types && npm run build:cjs && npm run build:esm && attw --pack .", "build:check-types": "tsc -p tsconfig.json --noEmit", "build:cjs": "tsc -p tsconfig.cjs.json && echo '{\"type\":\"commonjs\"}' > ./dist/cjs/package.json", "build:esm": "tsc -p tsconfig.esm.json", "test": "vitest --coverage" }, "author": "Marcus Ericsson <marcus@mixmax.com> (https://mixmax.com)", "license": "MIT", "keywords": [ "query parser", "querystrings", "search", "search syntax parser", "search query" ], "repository": "git@github.com:mixmaxhq/search-string.git", "devDependencies": { "@arethetypeswrong/cli": "^0.17.3", "@mixmaxhq/prettier-config": "^1.1.0", "@mixmaxhq/ts-config": "^3.0.1", "@types/node": "^22.7.4", "@vitest/coverage-v8": "^3.0.4", "eslint": "^8.57.1", "eslint-config-mixmax": "^5.2.2", "prettier": "^1.19.1", "typescript": "^5.6.2", "vitest": "^3.0.4" } }