-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.08 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
87
88
89
{
"name": "@jantstack/adonis-searchable",
"version": "2.0.0",
"description": "Generic service layer for AdonisJS + Lucid: paginated listing, fulltext search, declarative filters with a safe-by-default whitelist, period filters and preloads \u2014 without HttpContext.",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jantstack/adonis-searchable.git"
},
"keywords": [
"adonisjs",
"adonis",
"adonisjs-7",
"adonis-7",
"adonisjs-package",
"lucid",
"lucid-orm",
"adonis-lucid",
"orm",
"service-layer",
"repository",
"crud",
"query-builder",
"pagination",
"paginate",
"filters",
"filtering",
"search",
"fulltext-search",
"typescript",
"esm",
"postgresql",
"mysql",
"sqlite",
"rest-api",
"backend"
],
"engines": {
"node": ">=20.6.0"
},
"main": "./build/index.js",
"types": "./build/index.d.ts",
"exports": {
".": {
"types": "./build/index.d.ts",
"default": "./build/index.js"
}
},
"files": [
"build",
"README.md"
],
"scripts": {
"build": "npm run typecheck && rm -rf build && tsc",
"typecheck": "tsc --noEmit -p tsconfig.test.json",
"prepublishOnly": "npm run build",
"test": "node --import @poppinss/ts-exec bin/test.ts",
"typecheck:build": "tsc --noEmit"
},
"peerDependencies": {
"@adonisjs/core": "^7.0.0",
"@adonisjs/lucid": "^22.0.0"
},
"dependencies": {
"qs": "^6.15.2"
},
"devDependencies": {
"@adonisjs/core": "^7.3.1",
"@adonisjs/lucid": "^22.4.2",
"@japa/assert": "^4.2.0",
"@japa/runner": "^5.3.0",
"@poppinss/ts-exec": "^1.4.4",
"@types/luxon": "^3.7.2",
"@types/node": "^22.19.1",
"@types/qs": "^6.14.1",
"better-sqlite3": "^13.0.1",
"luxon": "^3.7.2",
"typescript": "~5.9.3"
},
"homepage": "https://github.com/jantstack/adonis-searchable#readme",
"bugs": {
"url": "https://github.com/jantstack/adonis-searchable/issues"
},
"publishConfig": {
"access": "public"
},
"sideEffects": false
}