-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
50 lines (50 loc) · 1.51 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"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 <[email protected]> (https://mixmax.com)",
"license": "MIT",
"keywords": [
"query parser",
"querystrings",
"search",
"search syntax parser",
"search query"
],
"repository": "[email protected]: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"
}
}