-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.31 KB
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": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"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": "^5.5.0",
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@eslint/js": "^10.0.1",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/github": "^12.0.8",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.1",
"@types/node": "^25.9.2",
"@vitest/coverage-v8": "^4.1.8",
"@vitest/ui": "^4.1.8",
"eslint": "^10.4.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-unicorn": "^65.0.0",
"globals": "^17.6.0",
"husky": "^9.1.7",
"peggy": "^3.0.2",
"prettier": "^3.8.3",
"semantic-release": "^25.0.3",
"ts-pegjs": "^4.2.1",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.1",
"vitest": "^4.1.8"
}
}