-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.33 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "lucene-kit",
"description": "Lightweight and extensive, Lucene-like solution provides powerful full-text search, serialization, and parser for your application.",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/oxdev03/lucene-kit"
},
"bugs": {
"url": "https://github.com/oxdev03/lucene-kit/issues"
},
"author": {
"name": "oxdev03",
"url": "https://github.com/oxdev03"
},
"keywords": [
"lucene",
"filter",
"solr",
"peggy",
"query",
"search",
"query-engine",
"filtering",
"nosql"
],
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"prebuild": "node ./scripts/generate-engine.js",
"build": "tsc --build",
"prebundle": "npm run prebuild",
"bundle": "tsup src/index.ts --format cjs,esm --dts --clean",
"test": "vitest",
"test:coverage": "vitest --coverage",
"bench": "vitest bench",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write \"**/*.{ts,json,css,scss,md}\"",
"format:check": "prettier --check \"**/*.{ts,json,css,scss,md}\"",
"prepare": "husky"
},
"devDependencies": {
"@codspeed/vitest-plugin": "^4.0.0",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.15.0",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.10.2",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/ui": "^2.1.8",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unicorn": "^56.0.1",
"globals": "^15.12.0",
"husky": "^9.1.7",
"prettier": "3.4.2",
"semantic-release": "^24.2.0",
"ts-pegjs": "^4.2.1",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"typescript-eslint": "^8.15.0",
"vitest": "^2.1.8"
}
}